We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f87fb commit 88868a5Copy full SHA for 88868a5
cores/rp2040/flash_wrapper.cpp
@@ -31,7 +31,7 @@ static void __no_inline_not_in_flash_func(flushcache)() {
31
// *cache = 0;
32
//}
33
uint32_t sum = 0; // Ignored, just to ensure not optimized out
34
- for (volatile uint32_t *flash = (volatile uint32_t *)0x11000000; flash < (volatile uint32_t *)(0x11000000 + 48*1024*4); flash++) {
+ for (volatile uint32_t *flash = (volatile uint32_t *)0x11000000; flash < (volatile uint32_t *)(0x11000000 + 48 * 1024 * 4); flash++) {
35
sum += *flash;
36
}
37
__wastedsum += sum;
0 commit comments