Closed
Description
I have spent the afternoon experimenting with how to put a string in progmem.
Using
#[cfg_attr(target_arch = "avr", link_section = ".progmem.data")]
static MESSAGE3: &str = "apple";
only puts the pointer and count of the slice in progmem. The actual characters still end up in RAM.
It is possible to use something like
#[cfg_attr(target_arch = "avr", link_section = ".progmem.data")]
static MESSAGE6: &[u8; 9] = b"dai kenja";
But if you try
#[cfg_attr(target_arch = "avr", link_section = ".progmem.data")]
static MESSAGE5: &[u8; 13] = b"dai 大賢者 kenja";
you get an error:
error: byte constant must be ASCII. Use a \xHH escape for a non-ASCII byte
Metadata
Metadata
Assignees
Labels
No labels