Add #DEFINE to user_config.h to enable easier bit rate selection.

This commit is contained in:
Jonathan karras 2015-10-29 21:25:02 -06:00
parent f11a5df955
commit 66e65bd3c1
2 changed files with 10 additions and 10 deletions

View File

@ -19,8 +19,12 @@
#ifdef DEVELOP_VERSION
#define NODE_DEBUG
#define COAP_DEBUG
#define BIT_RATE_DEFAULT BIT_RATE_74880
#else
#define BIT_RATE_DEFAULT BIT_RATE_9600
#endif /* DEVELOP_VERSION */
#define NODE_ERROR
#ifdef NODE_DEBUG

View File

@ -165,12 +165,8 @@ void user_init(void)
// os_printf("Heap size::%d.\n",system_get_free_heap_size());
// os_delay_us(50*1000); // delay 50ms before init uart
UartBautRate br =
#ifdef DEVELOP_VERSION
BIT_RATE_74880;
#else
BIT_RATE_9600;
#endif
UartBautRate br = BIT_RATE_DEFAULT;
uart_init (br, br, USER_TASK_PRIO_0, SIG_UARTINPUT);
#ifndef NODE_DEBUG