diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 6ba904e2e..1381bb27a 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -14,11 +14,10 @@
-
-
-
-
-
+
+
+
+
@@ -51,11 +50,6 @@
-
-
-
-
-
@@ -99,7 +93,9 @@
1615788661896
-
+
+
+
@@ -116,14 +112,20 @@
+
- file://$PROJECT_DIR$/src/main.cpp
- 282
-
+ file://$PROJECT_DIR$/src/mesh/StreamAPI.cpp
+ 20
+
+
+
+ file://$PROJECT_DIR$/src/mesh/wifi/WiFiServerAPI.cpp
+ 53
+
diff --git a/bin/program-1.1-tbeam.sh b/bin/program-1.1-tbeam.sh
new file mode 100755
index 000000000..9b95c3380
--- /dev/null
+++ b/bin/program-1.1-tbeam.sh
@@ -0,0 +1 @@
+esptool.py --baud 921600 write_flash 0x10000 release/archive/firmware-tbeam-1.1.50.bin
diff --git a/bin/run-both.sh b/bin/run-both.sh
new file mode 100755
index 000000000..e5a66b329
--- /dev/null
+++ b/bin/run-both.sh
@@ -0,0 +1,11 @@
+set -e
+
+pio run
+
+echo uploading to usb1
+pio run --upload-port /dev/ttyUSB1 -t upload &
+
+echo uploading to usb0
+pio run --upload-port /dev/ttyUSB0 -t upload &
+
+wait
\ No newline at end of file
diff --git a/docs/software/TODO.md b/docs/software/TODO.md
index 9633c021e..c65a53658 100644
--- a/docs/software/TODO.md
+++ b/docs/software/TODO.md
@@ -4,6 +4,9 @@ You probably don't care about this section - skip to the next one.
## 1.2 cleanup & multichannel support:
+* before next relase: test empty channel sets on android
+* test link sharing on android
+
* DONE cleanup the external notification and serial plugins
* non ack version of stress test fails sometimes!
* timestamps on oled screen are wrong - don't seem to be updating based on message rx
diff --git a/proto b/proto
index e68763737..39bb8b26b 160000
--- a/proto
+++ b/proto
@@ -1 +1 @@
-Subproject commit e68763737e3345ebf12c4776c84d27d83e1e9e1a
+Subproject commit 39bb8b26bbc107aae3586d5a5e11a06ea12680bc
diff --git a/src/mesh/generated/mesh.pb.h b/src/mesh/generated/mesh.pb.h
index 5f4f9bf35..84bdbbb43 100644
--- a/src/mesh/generated/mesh.pb.h
+++ b/src/mesh/generated/mesh.pb.h
@@ -26,7 +26,8 @@ typedef enum _HardwareModel {
HardwareModel_PPR = 34,
HardwareModel_GENIEBLOCKS = 35,
HardwareModel_NRF52_UNKNOWN = 36,
- HardwareModel_PORTDUINO = 37
+ HardwareModel_PORTDUINO = 37,
+ HardwareModel_ANDROID_SIM = 38
} HardwareModel;
typedef enum _Constants {
@@ -193,8 +194,8 @@ typedef struct _ToRadio {
/* Helper constants for enums */
#define _HardwareModel_MIN HardwareModel_UNSET
-#define _HardwareModel_MAX HardwareModel_PORTDUINO
-#define _HardwareModel_ARRAYSIZE ((HardwareModel)(HardwareModel_PORTDUINO+1))
+#define _HardwareModel_MAX HardwareModel_ANDROID_SIM
+#define _HardwareModel_ARRAYSIZE ((HardwareModel)(HardwareModel_ANDROID_SIM+1))
#define _Constants_MIN Constants_Unused
#define _Constants_MAX Constants_DATA_PAYLOAD_LEN
diff --git a/src/portduino/PortduinoGlue.cpp b/src/portduino/PortduinoGlue.cpp
index 44cb89464..5e3746335 100644
--- a/src/portduino/PortduinoGlue.cpp
+++ b/src/portduino/PortduinoGlue.cpp
@@ -28,7 +28,7 @@ void getMacAddr(uint8_t *dmac)
void setBluetoothEnable(bool on)
{
- notImplemented("setBluetoothEnable");
+ // not needed
}
void cpuDeepSleep(uint64_t msecs) {