Rev 2 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef _CONFIG_H_
#define _CONFIG_H_
#ifndef HW_VERSION
#error "No HW_VERSION set"
#endif
#if HW_VERSION==0x01
#include "config_hw01.h"
#endif
#if HW_VERSION==0x02
#include "config_hw02.h"
#endif
#define SW_VERSION 0x02
#define I2C_SLAVE_ADDR 0x26
#define DISPLAY_REFRESH 2
#endif