2019-01-20 22:39:26 +01:00
|
|
|
#ifndef _IF482_H
|
|
|
|
#define _IF482_H
|
|
|
|
|
|
|
|
#include "globals.h"
|
2019-01-27 18:19:25 +01:00
|
|
|
|
2019-02-17 19:21:08 +01:00
|
|
|
#define IF482_FRAME_SIZE (17)
|
|
|
|
#define IF482_PULSE_LENGTH (1000)
|
|
|
|
|
2019-02-16 15:02:07 +01:00
|
|
|
extern HardwareSerial IF482;
|
|
|
|
|
|
|
|
void IF482_Pulse(time_t t);
|
2019-02-17 19:21:08 +01:00
|
|
|
String IRAM_ATTR IF482_Frame(time_t tt);
|
2019-02-16 15:02:07 +01:00
|
|
|
TickType_t tx_Ticks(unsigned long baud, uint32_t config, int8_t rxPin,
|
2019-02-10 16:43:24 +01:00
|
|
|
int8_t txPins);
|
2019-01-20 22:39:26 +01:00
|
|
|
|
|
|
|
#endif
|