make senddatatimer global

This commit is contained in:
cyberman54 2022-11-15 12:08:52 +01:00
parent c07ca14e20
commit cbdad346ca

View File

@ -4,6 +4,8 @@
// Local logging tag
static const char TAG[] = __FILE__;
TimerHandle_t SendDataTimer = NULL;
void setSendIRQ(TimerHandle_t xTimer) {
xTaskNotify(irqHandlerTask, SENDCYCLE_IRQ, eSetBits);
}
@ -11,8 +13,6 @@ void setSendIRQ(TimerHandle_t xTimer) {
void setSendIRQ(void) { setSendIRQ(NULL); }
void initSendDataTimer(uint8_t sendcycle) {
static TimerHandle_t SendDataTimer = NULL;
if (SendDataTimer == NULL) {
SendDataTimer =
xTimerCreate("SendDataTimer", pdMS_TO_TICKS(sendcycle * 1000), pdTRUE,