From cdb4756d9d12a21560ea9522ee8665e7e5786769 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Mon, 29 Mar 2021 20:56:02 +0800 Subject: [PATCH] fix native build --- docs/software/TODO.md | 10 ++++++++++ src/concurrency/BinarySemaphorePosix.h | 3 +-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/software/TODO.md b/docs/software/TODO.md index 828f4f933..af36c6939 100644 --- a/docs/software/TODO.md +++ b/docs/software/TODO.md @@ -4,8 +4,14 @@ You probably don't care about this section - skip to the next one. ## before next release +* TCP mode for android, localhost is at 10.0.2.2 +* make sure USB still works in android +* add portduino builds to zip +* add license to portduino and make announcement +* @havealoha comments about odd sleep behavior * DONE naks are being dropped (though enqueuedLocal) sometimes before phone/PC gets them * DONE have android fill in if local GPS has poor signal +* release to beta and amazon * fix heltec battery scaling * add reference counting to mesh packets * allow multiple simultanteous phoneapi connections @@ -38,6 +44,10 @@ You probably don't care about this section - skip to the next one. ## MQTT +* do initial development inside of portduino +* do as much possible on the device side (so we can eventually just have ESP32 talk directly to server) +* eventually add a MQTTPacket on the ToRadio & FromRadio links + ## Multichannel support * DONE cleanup the external notification and serial plugins diff --git a/src/concurrency/BinarySemaphorePosix.h b/src/concurrency/BinarySemaphorePosix.h index 8a6368678..475b29874 100644 --- a/src/concurrency/BinarySemaphorePosix.h +++ b/src/concurrency/BinarySemaphorePosix.h @@ -1,6 +1,5 @@ #pragma once -#include "configuration.h" #include "../freertosinc.h" namespace concurrency @@ -28,4 +27,4 @@ class BinarySemaphorePosix #endif -} \ No newline at end of file +} // namespace concurrency \ No newline at end of file