Compare commits

..

No commits in common. "5ebf730b69e4a1e97dc12ae8333b6033015eb492" and "e094a77b8eb9ec3616b579f6430c224842c925b1" have entirely different histories.

4 changed files with 6 additions and 19 deletions

View File

@ -94,7 +94,8 @@ lib_deps =
[device-ui_base] [device-ui_base]
lib_deps = lib_deps =
https://github.com/meshtastic/device-ui.git#7a6ffba3c86901b0e3234b6c056aa803b4cd8854 ;https://github.com/meshtastic/device-ui.git#7a6ffba3c86901b0e3234b6c056aa803b4cd8854
symlink:///home/manuel/Documents/PlatformIO/Projects/device-ui
; Common libs for environmental measurements in telemetry module ; Common libs for environmental measurements in telemetry module
; (not included in native / portduino) ; (not included in native / portduino)

View File

@ -110,11 +110,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// Define if screen should be mirrored left to right // Define if screen should be mirrored left to right
// #define SCREEN_MIRROR // #define SCREEN_MIRROR
// Define BUTTON_PIN to ensure button setup is always done
#ifndef BUTTON_PIN
#define BUTTON_PIN (-1)
#endif
// I2C Keyboards (M5Stack, RAK14004, T-Deck) // I2C Keyboards (M5Stack, RAK14004, T-Deck)
#define CARDKB_ADDR 0x5F #define CARDKB_ADDR 0x5F
#define TDECK_KB_ADDR 0x55 #define TDECK_KB_ADDR 0x55

View File

@ -309,10 +309,7 @@ void MeshService::sendToPhone(meshtastic_MeshPacket *p)
} }
} }
if (toPhoneQueue.enqueue(p, 0) == false) { assert(toPhoneQueue.enqueue(p, 0));
LOG_CRIT("Failed to queue a packet into toPhoneQueue!");
abort();
}
fromNum++; fromNum++;
} }
@ -326,10 +323,7 @@ void MeshService::sendMqttMessageToClientProxy(meshtastic_MqttClientProxyMessage
releaseMqttClientProxyMessageToPool(d); releaseMqttClientProxyMessageToPool(d);
} }
if (toPhoneMqttProxyQueue.enqueue(m, 0) == false) { assert(toPhoneMqttProxyQueue.enqueue(m, 0));
LOG_CRIT("Failed to queue a packet into toPhoneMqttProxyQueue!");
abort();
}
fromNum++; fromNum++;
} }
@ -343,10 +337,7 @@ void MeshService::sendClientNotification(meshtastic_ClientNotification *n)
releaseClientNotificationToPool(d); releaseClientNotificationToPool(d);
} }
if (toPhoneClientNotificationQueue.enqueue(n, 0) == false) { assert(toPhoneClientNotificationQueue.enqueue(n, 0));
LOG_CRIT("Failed to queue a notification into toPhoneClientNotificationQueue!");
abort();
}
fromNum++; fromNum++;
} }

View File

@ -66,7 +66,7 @@ build_flags =
-D VIEW_320x240 -D VIEW_320x240
; -D USE_DOUBLE_BUFFER ; -D USE_DOUBLE_BUFFER
-D USE_PACKET_API -D USE_PACKET_API
-D MAP_FULL_REDRAW ; -D MAP_FULL_REDRAW
lib_deps = lib_deps =
${env:t-deck.lib_deps} ${env:t-deck.lib_deps}