We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 511c0e6 commit 0bea017Copy full SHA for 0bea017
main.c
@@ -299,6 +299,10 @@ STATIC bool maybe_run_list(const char *const *filenames, size_t n_filenames) {
299
if (_current_executing_filename == NULL) {
300
return false;
301
}
302
+
303
+ // This function is used for `boot.py` and is then logged into `boot_out.txt`.
304
+ // We do not want the line clear to be logged.
305
+ // The function `serial_write` is the only function that isn't logged into the file.
306
serial_write(line_clear);
307
mp_hal_stdout_tx_str(_current_executing_filename);
308
serial_write_compressed(MP_ERROR_TEXT(" output:\n"));
0 commit comments