28 lines
512 B
C
28 lines
512 B
C
#ifndef _SENDDATA_H
|
|
#define _SENDDATA_H
|
|
|
|
#include <libpax_api.h>
|
|
#include "spislave.h"
|
|
#include "mqttclient.h"
|
|
#include "cyclic.h"
|
|
#include "sensor.h"
|
|
#include "lorawan.h"
|
|
#include "display.h"
|
|
#include "sdcard.h"
|
|
|
|
#if (COUNT_ENS)
|
|
#include "corona.h"
|
|
#endif
|
|
|
|
extern struct count_payload_t count_from_libpax;
|
|
extern Ticker sendTimer;
|
|
|
|
void SendPayload(uint8_t port);
|
|
void sendData(void);
|
|
void checkSendQueues(void);
|
|
void flushQueues(void);
|
|
bool allQueuesEmtpy(void);
|
|
void setSendIRQ(void);
|
|
|
|
#endif // _SENDDATA_H_
|