M8: preview messages up to 164 cars

This commit is contained in:
Florent
2026-08-17 09:24:17 -04:00
parent 0a595ae79d
commit de0d5031de
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -511,6 +511,10 @@ public:
}
};
#ifndef UI_MSG_PREVIEW_SIZE
#define UI_MSG_PREVIEW_SIZE 78
#endif
class MsgPreviewScreen : public UIScreen {
UITask* _task;
mesh::RTCClock* _rtc;
@@ -518,7 +522,7 @@ class MsgPreviewScreen : public UIScreen {
struct MsgEntry {
uint32_t timestamp;
char origin[62];
char msg[78];
char msg[UI_MSG_PREVIEW_SIZE];
};
#define MAX_UNREAD_MSGS 32
int num_unread;