Normalize line endings (CRLF to LF)

This commit is contained in:
2026-05-07 09:00:36 +02:00
parent 604c8a3eaf
commit 47631f4de4
64 changed files with 11061 additions and 11053 deletions
+11 -3
View File
@@ -9,17 +9,25 @@
#define INTERRUPTHANDLER_H_ #define INTERRUPTHANDLER_H_
#include "Arduino.h" #include "Arduino.h"
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "freertos/queue.h"
#define ISR_TIME_US (10000uL) #define ISR_TIME_US (10000uL)
#define MS_TO_ISR_COUNT(ms) ( ((ms)*1000uL) / ISR_TIME_US ) #define MS_TO_ISR_COUNT(ms) ( ((ms)*1000uL) / ISR_TIME_US )
/* RF pulse event pushed from pinLevelChangeIsr to rfDecodeTask via queue */
typedef struct {
uint32_t dtMicros;
bool pinValue;
} RfEvent_t;
extern SemaphoreHandle_t beepSemaphore; /* given every ISR_TIME_US to wake beepTask */
extern QueueHandle_t rfEventQueue; /* RF pulse events for rfDecodeTask */
void InterruptHandler_Init(void); void InterruptHandler_Init(void);
void InterruptHandler_PauseReceive(); void InterruptHandler_PauseReceive();
void InterruptHandler_Stop(void); void InterruptHandler_Stop(void);
#endif /* INTERRUPTHANDLER_H_ */ #endif /* INTERRUPTHANDLER_H_ */