osd-contiki/tests/config.h

36 lines
742 B
C
Raw Normal View History

2010-02-26 20:21:46 +01:00
#ifndef CONFIG_H
#define CONFIG_H
/* Baud rate */
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
#define INC 767
#define MOD 9999
/* use uart1 for console */
#define uart_init uart1_init
/* nvm-read */
#define READ_ADDR 0x1F000
#define READ_NBYTES 1024
/* nvm-write */
#define WRITE_NBYTES 8
#define WRITE_ADDR 0x1e000
#define WRITEVAL0 0xdeadbeef
#define WRITEVAL1 0xdeadbeef
/* romimg */
#define DUMP_BASE 0x00000000
#define DUMP_LEN 0x00014000
2010-02-26 20:51:01 +01:00
/* flasher */
/* if both BOOT_OK and BOOT_SECURE are 0 then flash image will not be bootable */
/* if both are 1 then flash image will be secure */
#define BOOT_OK 1
#define BOOT_SECURE 0
/* sleep */
#undef USE_32KHZ /* board should have a HAS_32KHZ define */
2010-02-26 20:21:46 +01:00
#endif