Change symbol extraction to use objdump not nm
nm outputs warnings to stderr so hard to clean output. Also now picks up global variables, like NMIIrqOn.
This commit is contained in:
parent
9e3328abe8
commit
81afe58334
3 changed files with 10 additions and 7 deletions
|
@ -36,8 +36,8 @@ static xQueueHandle mainqueue;
|
|||
|
||||
void user_init(void)
|
||||
{
|
||||
uart_div_modify(0, UART_CLK_FREQ / 115200);
|
||||
printf("SDK version:%s\n", system_get_sdk_version());
|
||||
sdk_uart_div_modify(0, UART_CLK_FREQ / 115200);
|
||||
printf("SDK version:%s\n", sdk_system_get_sdk_version());
|
||||
mainqueue = xQueueCreate(10, sizeof(uint32_t));
|
||||
xTaskCreate(task1, (signed char *)"tsk1", 256, &mainqueue, 2, NULL);
|
||||
xTaskCreate(task2, (signed char *)"tsk2", 256, &mainqueue, 2, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue