diff options
author | Xelus22 <17491233+Xelus22@users.noreply.github.com> | 2020-12-13 18:50:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 05:50:50 +1100 |
commit | 70f40339c2b4431dbbafa5d9439c04f9a0d47884 (patch) | |
tree | 0930a3f056be5200fe250048734347ba423c9e74 /drivers/eeprom | |
parent | 10e4487ba368a9e220c96e12a0d17ae729d5c1e1 (diff) | |
download | qmk_firmware-70f40339c2b4431dbbafa5d9439c04f9a0d47884.tar.gz qmk_firmware-70f40339c2b4431dbbafa5d9439c04f9a0d47884.zip |
Add i2c 24LC64 eeprom (#11200)
* add 24LC64 eeprom
* docs update
* Update docs/eeprom_driver.md
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'drivers/eeprom')
-rw-r--r-- | drivers/eeprom/eeprom_i2c.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/eeprom/eeprom_i2c.h b/drivers/eeprom/eeprom_i2c.h index 51bce825b0..77eea66d63 100644 --- a/drivers/eeprom/eeprom_i2c.h +++ b/drivers/eeprom/eeprom_i2c.h @@ -49,6 +49,11 @@ # define EXTERNAL_EEPROM_PAGE_SIZE 64 # define EXTERNAL_EEPROM_ADDRESS_SIZE 2 # define EXTERNAL_EEPROM_WRITE_TIME 5 +#elif defined(EEPROM_I2C_24LC64) +# define EXTERNAL_EEPROM_BYTE_COUNT 8192 +# define EXTERNAL_EEPROM_PAGE_SIZE 32 +# define EXTERNAL_EEPROM_ADDRESS_SIZE 2 +# define EXTERNAL_EEPROM_WRITE_TIME 5 #elif defined(EEPROM_I2C_MB85RC256V) # define EXTERNAL_EEPROM_BYTE_COUNT 32768 # define EXTERNAL_EEPROM_PAGE_SIZE 128 |