Skip to content

Commit e68bc1f

Browse files
LOCOSPclaude
andcommitted
fix: revert cmdline to 1024 — 16KB caused chunked base64 corruption
16KB cmdline buffer caused firmware to read multiple serial chunks as one line, corrupting base64 accumulator. Revert to 1024 which worked correctly with 256-byte chunks. Bump to v1.6.5. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d4ba47c commit e68bc1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ESP32C5/main/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
#endif
116116

117117
//Version number
118-
#define JANOS_VERSION "1.6.4"
118+
#define JANOS_VERSION "1.6.5"
119119

120120
#define OTA_GITHUB_OWNER "LOCOSP"
121121
#define OTA_GITHUB_REPO "projectZero"
@@ -14772,7 +14772,7 @@ void app_main(void) {
1477214772
MY_LOG_INFO(TAG," wigle_upload");
1477314773

1477414774
repl_config.prompt = ">";
14775-
repl_config.max_cmdline_length = 16384; // must fit inline set_html (portals up to ~15KB)
14775+
repl_config.max_cmdline_length = 1024; // must fit set_html chunks (~266 chars each)
1477614776

1477714777
esp_console_register_help_command();
1477814778
register_commands();

0 commit comments

Comments
 (0)