1
0
该仓库已被归档。您可以查看文件和克隆它,但不能推送、创建工单或合并请求。
tmk_keyboard_custom/common/ledmap_in_eeprom.c

36 行
798 B
C

2014-07-23 01:02:14 +00:00
#include <avr/pgmspace.h>
#include <avr/eeprom.h>
#include "ledmap_in_eeprom.h"
#ifdef LEDMAP_IN_EEPROM_ENABLE
#undef ledmap_get_code
static ledmap_t ledmap[LED_COUNT];
2014-07-23 01:02:14 +00:00
2014-07-24 06:03:58 +00:00
void ledmap_in_eeprom_init(void)
{
2014-07-23 01:02:14 +00:00
for (uint8_t i = 0; i < LED_COUNT; i++) {
ledmap[i].code = eeprom_read_word(EECONFIG_LEDMAP + i);
/* ledmap[i].code = LEDMAP_UNCONFIGURED; */
if (ledmap[i].code == LEDMAP_UNCONFIGURED) {
2014-07-24 06:03:58 +00:00
ledmap[i] = ledmap_get_code(i);
eeprom_write_word(EECONFIG_LEDMAP + i, ledmap[i].code);
2014-07-23 01:02:14 +00:00
}
}
}
2014-07-24 06:03:58 +00:00
void write_ledmap_to_eeprom(void)
{
for (uint8_t i = 0; i < LED_COUNT; i++) {
eeprom_write_word(EECONFIG_LEDMAP + i, ledmap_get_code(i).code);
2014-07-24 06:03:58 +00:00
}
}
ledmap_t ledmap_in_eeprom_get_code(uint8_t i)
2014-07-23 01:02:14 +00:00
{
return ledmap[i];
}
#endif