2021-06-06 12:16:46 +02:00
|
|
|
#ifndef RS485_H
|
|
|
|
#define RS485_H
|
|
|
|
|
|
|
|
void rs485_init(void);
|
|
|
|
void rs485_periodic(void);
|
|
|
|
|
|
|
|
void rs485_enqueue(const char *str);
|
|
|
|
|
2021-06-12 15:57:19 +02:00
|
|
|
void rs485_deepsleep_prepare(void);
|
|
|
|
void rs485_deepsleep_resume(void);
|
|
|
|
|
2021-06-06 12:16:46 +02:00
|
|
|
#endif // RS485_H
|