From d283110c051fbd20792bedb7bd67239e30c2a29a Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Thu, 31 Aug 2017 17:37:53 -0400 Subject: Withdraw SysTick_hook (commit 9ffead1), because it turns out there was already a user-callback mechanism with HAL_SYSTICK_IRQHandler() and HAL_SYSTICK_Callback(). --- projects/hsm/hsm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'projects') diff --git a/projects/hsm/hsm.c b/projects/hsm/hsm.c index 28a1e68..800edcc 100644 --- a/projects/hsm/hsm.c +++ b/projects/hsm/hsm.c @@ -266,7 +266,7 @@ volatile uart_ringbuf_t uart_ringbuf = {0, {0}}; size_t uart_rx_max = 0; -static void uart_rx_task(void) +void HAL_SYSTICK_Callback(void) { size_t count = RINGBUF_COUNT(uart_ringbuf); if (uart_rx_max < count) uart_rx_max = count; @@ -438,8 +438,6 @@ int main(void) Error_Handler(); /* Start the UART receiver. */ - extern void set_SysTick_hook(void (*hook)(void)); - set_SysTick_hook(uart_rx_task); if (HAL_UART_Receive_DMA(&huart_user, (uint8_t *) uart_ringbuf.buf, sizeof(uart_ringbuf.buf)) != CMSIS_HAL_OK) Error_Handler(); -- cgit v1.2.3