How to place a structure in flash memory in read-only mode?
I make a simple file system with 256 files. In the header I want to put data about the file system.The data is presented as an array of structures:typedef struct { const char name[20]; const char textExtension[4]; const uint32_t size; ...