File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
examples/Creating a Flash-Optimised Key-Value Store/FlashKeyValue Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 38
38
- fqbn : arduino:mbed_portenta:envie_m7
39
39
sketch-paths : |
40
40
- examples/BLE Connectivity on Portenta H7/PortentaBLE
41
- - examples/Creating a Flash-Optimised Key-Value Store/FlashKeyValueStore
41
+ - examples/Creating a Flash-Optimised Key-Value Store/FlashKeyValue
42
42
- examples/Dual Core Processing/BlinkRedLed
43
43
- examples/Dual Core Processing/BlinkRedLed_M7
44
44
- examples/Portenta H7 as a USB Host/LEDKeyboardController
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ void setup()
35
35
36
36
// Initialize the flash IAP block device and print the memory layout
37
37
blockDevice.init ();
38
- Serial.printf (" FlashIAP block device size: %llu \r\n " , blockDevice.size ());
39
- Serial.printf (" FlashIAP block device read size: %llu \r\n " , blockDevice.get_read_size ());
40
- Serial.printf (" FlashIAP block device program size: %llu \r\n " , blockDevice.get_program_size ());
41
- Serial.printf (" FlashIAP block device erase size: %llu \r\n " , blockDevice.get_erase_size ());
38
+ Serial.println (" FlashIAP block device size: " + blockDevice.size ());
39
+ Serial.println (" FlashIAP block device read size: " + blockDevice.get_read_size ());
40
+ Serial.println (" FlashIAP block device program size: " + blockDevice.get_program_size ());
41
+ Serial.println (" FlashIAP block device erase size: " + blockDevice.get_erase_size ());
42
42
// Deinitialize the device
43
43
blockDevice.deinit ();
44
44
You can’t perform that action at this time.
0 commit comments