File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 7
7
#define MT_SOFTWARESERIAL_SUPPORTED
8
8
#endif
9
9
10
- #include "Meshtastic.h"
11
-
12
10
extern bool mt_debugging ;
13
11
void mt_debug_print (const char * s );
14
12
#define d (s ) mt_debug_print(s)
15
13
16
14
extern bool mt_wifi_mode ;
17
15
extern bool mt_serial_mode ;
18
16
19
- bool mt_wifi_loop (uint32_t now );
20
- bool mt_serial_loop ();
21
-
22
- size_t mt_wifi_check_radio (char * buf , size_t space_left );
23
- size_t mt_serial_check_radio (char * buf , size_t space_left );
24
-
25
- bool mt_wifi_send_radio (const char * buf , size_t len );
26
- bool mt_serial_send_radio (const char * buf , size_t len );
27
-
28
- void mt_wifi_reset_idle_timeout (uint32_t now );
29
-
30
17
#endif
Original file line number Diff line number Diff line change 1
1
#include " mt_internals.h"
2
+ #include " mt_serial.h"
2
3
3
4
#ifdef MT_SOFTWARESERIAL_SUPPORTED
4
5
#include < SoftwareSerial.h>
Original file line number Diff line number Diff line change
1
+ #include <Arduino.h>
2
+
3
+ size_t mt_serial_check_radio (char * buf , size_t space_left );
4
+ bool mt_serial_send_radio (const char * buf , size_t len );
5
+ bool mt_serial_loop ();
Original file line number Diff line number Diff line change
1
+ #include " mt_wifi.h"
1
2
#ifdef MT_WIFI_SUPPORTED
2
3
3
4
#include < WiFi101.h>
Original file line number Diff line number Diff line change
1
+ #include <Arduino.h>
2
+
3
+ bool mt_wifi_loop (uint32_t now );
4
+ size_t mt_wifi_check_radio (char * buf , size_t space_left );
5
+ bool mt_wifi_send_radio (const char * buf , size_t len );
6
+ void mt_wifi_reset_idle_timeout (uint32_t now );
You can’t perform that action at this time.
0 commit comments