Implement task for sending CAN data via UART #21

Merged
eeeck merged 71 commits from dev_serial-send into main 2026-06-18 15:35:23 +02:00
Showing only changes of commit 6bcc977c65 - Show all commits
+1 -3
View File
@@ -85,9 +85,7 @@ void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart)
{ {
if (huart->Instance == USART1) if (huart->Instance == USART1)
{ {
BaseType_t xHigherPriorityTaskWoken = pdFALSE; osSemaphoreRelease(xUARTDMASemaphore);
osSemaphoreReleaseFromISR(xUARTDMASemaphore, &xHigherPriorityTaskWoken);
portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
} }
} }
/* END HAL_UART_TxCpltCallback */ /* END HAL_UART_TxCpltCallback */