diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-06-19 14:04:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 14:04:19 -0400 |
commit | e951317acbad8ef67a9da13b657e13e6c1d27e1d (patch) | |
tree | a9c616a4a7d91eaf38bef570c9487493ca2b2c2e /tmk_core/common/eeprom.h | |
parent | 621ae42a6cb9f96b8c02a0094b36daf125c4e6ca (diff) | |
parent | 1aa0be4cf1d00f852150e2b2ed5e4c151aeeef3a (diff) |
Merge pull request #1409 from fredizzimo/full_unit_test
Take first baby steps towards testing the whole QMK
Diffstat (limited to 'tmk_core/common/eeprom.h')
-rw-r--r-- | tmk_core/common/eeprom.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/eeprom.h b/tmk_core/common/eeprom.h index 2cc2ccee3f..3696d0df3f 100644 --- a/tmk_core/common/eeprom.h +++ b/tmk_core/common/eeprom.h @@ -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); |