1
0
Fork 0

Fixes bad thread_data for uart_tx_thread

This commit is contained in:
Shawn Nock 2019-08-03 13:10:22 -05:00
parent 3c62d3a209
commit 5887339c44
1 changed files with 1 additions and 1 deletions

View File

@ -726,7 +726,7 @@ static void h5_init(void)
/* Thread handles incoming events from BT Controller */
k_fifo_init(&h5.uart_tx_queue);
k_thread_create(&event_thread_data, uart_tx_stack,
k_thread_create(&uart_tx_thread_data, uart_tx_stack,
K_THREAD_STACK_SIZEOF(uart_tx_stack),
(k_thread_entry_t)uart_tx_thread, NULL, NULL, NULL,
K_PRIO_PREEMPT(0),