Prepared EEPROM functionality

This commit is contained in:
Mark Qvist 2018-06-18 22:30:24 +02:00
parent 8a604f911b
commit 4d943999d5
6 changed files with 72 additions and 4 deletions

View file

@ -1,9 +1,13 @@
#ifndef CONFIG_H
#define CONFIG_H
#define MCU_328P 0x90
#define MCU_328P 0x90
#define MCU_1284P 0x91
#define PRODUCT_RNODE 0x03
#define MODEL_A4 0xA4
#define MODEL_A9 0xA9
#if defined(__AVR_ATmega328P__)
#define MCU_VARIANT MCU_328P
#warning "Firmware is being compiled for atmega328p based boards"