Skip to content

Commit 98a4a1d

Browse files
committed
reference the handle properly
1 parent 8e6c30e commit 98a4a1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/can_library/can_common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ QueueHandle_t can_tx_queues[CAN_NUM_PERIPHERALS];
1818

1919
DEFINE_QUEUE(can_rx_queue, CanMsgTypeDef_t, CAN_RX_QUEUE_LENGTH);
2020

21-
extern ThreadWrapper_t CAN_rx_update_wrapper;
22-
extern ThreadWrapper_t CAN_tx_update_wrapper;
21+
extern osThreadId_t CAN_rx_update_handle;
22+
extern osThreadId_t CAN_tx_update_handle;
2323

2424
// Shared rx update implementation
2525
void CAN_rx_update() {

0 commit comments

Comments
 (0)