2019-05-25 16:52:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef PDA_H_
|
|
|
|
#define PDA_H_
|
|
|
|
|
2019-07-14 14:39:15 +00:00
|
|
|
#ifdef BETA_PDA_AUTOLABEL
|
|
|
|
#include "aqualink.h"
|
|
|
|
#include "config.h"
|
|
|
|
void init_pda(struct aqualinkdata *aqdata, struct aqconfig *aqconfig);
|
|
|
|
#else
|
|
|
|
void init_pda(struct aqualinkdata *aqdata);
|
|
|
|
#endif
|
|
|
|
|
2019-05-25 16:52:36 +00:00
|
|
|
bool process_pda_packet(unsigned char* packet, int length);
|
|
|
|
bool pda_shouldSleep();
|
|
|
|
void pda_wake();
|
|
|
|
void pda_reset_sleep();
|
|
|
|
|
|
|
|
#endif // PDA_MESSAGES_H_
|