osd-contiki/tests/config.h

41 lines
900 B
C
Raw Normal View History

2010-02-26 20:21:46 +01:00
#ifndef CONFIG_H
#define CONFIG_H
/* Baud rate */
#define MOD 9999
2010-03-10 00:23:40 +01:00
/* 230400 bps, INC=767, MOD=9999, 24Mhz 16x samp */
/* 115200 bps, INC=767, MOD=9999, 24Mhz 8x samp */
#define INC 767
/* 921600 bps, MOD=9999, 24Mhz 16x samp */
//#define INC 3071
#define SAMP UCON_SAMP_8X
//#define SAMP UCON_SAMP_16X
2010-02-26 20:21:46 +01:00
/* use uart1 for console */
#define uart_init uart1_init
/* nvm-read */
2010-03-20 03:12:25 +01:00
#define READ_ADDR 0x1E000
#define READ_NBYTES 8
2010-02-26 20:21:46 +01:00
/* 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