]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/common/eeprom.h
Adding rgb matrix speed into eeprom storage. (#5965)
[qmk_firmware.git] / tmk_core / common / eeprom.h
index 2cc2ccee3f74cdbcb81e3df29e00a2f88795d699..5ae0f6eebd9361ca9cc20e7bbf002782341a1130 100644 (file)
@@ -4,6 +4,8 @@
 #if defined(__AVR__)
 #include <avr/eeprom.h>
 #else
+#include <stdint.h>
+
 uint8_t        eeprom_read_byte (const uint8_t *__p);
 uint16_t       eeprom_read_word (const uint16_t *__p);
 uint32_t       eeprom_read_dword (const uint32_t *__p);
@@ -18,5 +20,4 @@ void  eeprom_update_dword (uint32_t *__p, uint32_t __value);
 void   eeprom_update_block (const void *__src, void *__dst, uint32_t __n);
 #endif
 
-
 #endif /* TMK_CORE_COMMON_EEPROM_H_ */