1234567891011121314151617181920212223242526272829303132333435363738 |
-
-
- #ifndef __MEM_H__
- #define __MEM_H__
-
- #include <stdint.h>
-
- #define MEM_VERSION 0x01
-
- struct mem_data {
- uint16_t backlight;
- } __attribute__((packed));
-
- #define MEM_DATA_INIT { \
- .backlight = (0xFF00 >> 1), \
- }
-
- void mem_init(void);
- void mem_write(void);
- struct mem_data *mem_data(void);
-
- #endif
|