2011-01-22 04:19 AM
How to create a shared var in RAM
2011-05-17 05:22 AM
Truncate the amount of RAM the compiler/linker can see, and then define a variable or structure at the end of memory as a common space.
unsigned *foo = (unsigned *)0x20004F00; if (*foo == 0x1234ABCD) // Check Magic { *foo = 0xABCD1234; // Invalidate Magic puts(''Magic Value 1 Detected''); }2011-05-17 05:22 AM
good idea !
Thanks clive.