added the f!() macro to the library to make shure that all random text can be written to the progmem to save the important ram
This commit is contained in:
parent
b00ee76ef1
commit
990ae0c03c
11 changed files with 71 additions and 97 deletions
|
@ -48,10 +48,10 @@ pub unsafe extern "C" fn loop_() {
|
|||
arduboy.print(count as u16);
|
||||
|
||||
arduboy.set_cursor(0, 30);
|
||||
arduboy.print("Memory:\0");
|
||||
arduboy.print(f!(b"Memory:\0"));
|
||||
arduboy.print(MEM as u16);
|
||||
arduboy.set_cursor(0, 40);
|
||||
arduboy.print("eeprom:\0");
|
||||
arduboy.print(f!(b"eeprom:\0"));
|
||||
|
||||
arduboy.print(eeprom.read() as u16);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue