modem stuff

This commit is contained in:
2021-02-18 17:32:15 +01:00
parent 1f124976e7
commit 84f58a343e
4 changed files with 13 additions and 2 deletions

View File

@ -68,6 +68,11 @@ void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) {
debugTxCpltCallback(huart);
}
#endif //LOGGER_OUTPUT_BY_INTERRUPT
#if NETWORK_STACK == 2
if (huart == &modemUart) {
modemTxCpltCallback(huart);
}
#endif
}
void HAL_SPI_TxCpltCallback(SPI_HandleTypeDef *hspi) {