contain lorawan with serial_rx enabled

Dependencies:   pulga-lorawan-drv SPI_MX25R Si1133 BME280

Revision:
64:ed68ddac6360
Parent:
63:4ec1808fb547
--- a/serial.h	Fri Feb 26 18:11:06 2021 +0000
+++ b/serial.h	Tue Mar 02 16:57:31 2021 +0000
@@ -3,7 +3,10 @@
 
 #include "mbed.h"
 #include "gps.h"
+#include "lora_radio.h"
+
 #define CMD_PRINT_LAST_GPS 'g'
+#define CMD_SEND_HELLO 'h'
 
 extern RawSerial pc;
 
@@ -13,4 +16,6 @@
 
 extern void serial_post_to_queue(void);
 
+extern void PrintDebugMsg(char *msg);
+
 #endif