modem stuff

This commit is contained in:
2021-02-19 21:21:08 +01:00
parent 12d8f9a9fe
commit 1dd4d35530
7 changed files with 49 additions and 4 deletions

16
cube/User/Inc/modemCom.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef _MODEM_COM_H_
#define _MODEM_COM_H_
#include <usart.h>
#if NETWORK_STACK == 2 // WiFi
void modemTxCpltCallback(UART_HandleTypeDef *huart);
void modemRxCpltCallback(UART_HandleTypeDef *huart);
#endif
#endif // _MODEM_COM_H_