What's a good way to put statics in non RAM section when using cortex-m-rtt? Specifically, is there any good way to initialize at startup with the static init value? Thinking about StaticCells here, which actually check their data to ensure they are not initialized twice on init. If I don't copy the init data from the data section it will contain garbage and init may spuriously fail.