From d9f542970f56c0ee591589ec043a1d5015a3ba69 Mon Sep 17 00:00:00 2001 From: Hans Date: Thu, 19 Oct 2023 21:01:14 +0200 Subject: [PATCH] Fix URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0acf141c..790c9b7f 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ digitalWrite(0, HIGH); ## Write to own flash MightyCore uses the excellent Urboot bootloader, written by [Stefan Rueger](https://github.com/stefanrueger). Urboot supports flash writing within the running application, meaning that content from e.g. a sensor can be stored in the flash memory directly without needing external memory. Flash memory is much faster than EEPROM, and can handle at least 10,000 write cycles before wear becomes an issue. For more information on how it works and how you can use this in your own application, check out the [Serial_read_write](https://github.com/MCUdude/MightyCore/blob/master/avr/libraries/Flash/examples/Serial_read_write/Serial_read_write.ino) for a simple proof-of-concept demo, and -[Flash_put_get](https://github.com/MCUdude/MightyCore/blob/master/avr/libraries/Flash/examples/Flash_put_get/Flash_put_get.ino) + [Flash_iterate](https://github.com/MCUdude/MightyCore/blob/master/avr/libraries/Flash/examples/Flash_iterate/Flash_iterate.ino) for useful examples on how you can store strings, structs, and variables to flash and retrieve then afterward. +[Flash_get_put](https://github.com/MCUdude/MightyCore/blob/master/avr/libraries/Flash/examples/Flash_get_put/Flash_get_put.ino) + [Flash_iterate](https://github.com/MCUdude/MightyCore/blob/master/avr/libraries/Flash/examples/Flash_iterate/Flash_iterate.ino) for useful examples on how you can store strings, structs, and variables to flash and retrieve then afterward. ## PROGMEM with flash sizes greater than 64kiB