개발모듈/펌웨어 모듈
- [AVR Studio] EEPROM 읽고 쓰기
메가아재
2017. 5. 26. 11:06
반응형
1 2 3 4 | #include <avr/eeprom.h> 쓰기(10번지) : eeprom_write_byte((uint8_t*)10, (uint8_t)Disp_Mode); 읽기(10번지) : Disp_Mode = eeprom_read_byte((uint8_t*)10); | cs |
반응형