d0f8336f13
had to comment out radio_off since I don't have the maca stuff moved over yet.
36 lines
742 B
C
36 lines
742 B
C
#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
|
|
|
|
/* 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 */
|
|
|
|
#endif
|