Skip to content

Commit b7a7370

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 0400421 + 3515003 commit b7a7370

File tree

132 files changed

+2469
-555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+2469
-555
lines changed

frozen/mixgo_cp_lib

locale/circuitpython.pot

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3755,6 +3755,10 @@ msgstr ""
37553755
msgid "pow() with 3 arguments requires integers"
37563756
msgstr ""
37573757

3758+
#: ports/espressif/boards/adafruit_feather_esp32_v2/mpconfigboard.h
3759+
msgid "pressing SW38 button at start up.\n"
3760+
msgstr ""
3761+
37583762
#: ports/espressif/boards/adafruit_qtpy_esp32c3/mpconfigboard.h
37593763
#: ports/espressif/boards/lolin_c3_mini/mpconfigboard.h
37603764
#: supervisor/shared/safe_mode.c

main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,10 @@ STATIC bool run_code_py(safe_mode_t safe_mode, bool first_run, bool *simulate_re
704704
vstr_t *boot_output;
705705

706706
STATIC void __attribute__ ((noinline)) run_boot_py(safe_mode_t safe_mode) {
707+
if (safe_mode == NO_HEAP) {
708+
return;
709+
}
710+
707711
// If not in safe mode, run boot before initing USB and capture output in a file.
708712

709713
// There is USB setup to do even if boot.py is not actually run.

ports/atmel-samd/peripherals

ports/broadcom/mpconfigport.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#define MICROPY_PORT_ROOT_POINTERS \
6161
CIRCUITPY_COMMON_ROOT_POINTERS
6262

63-
#define CIRCUITPY_DEBUG_UART_TX (&pin_GPIO14)
64-
#define CIRCUITPY_DEBUG_UART_RX (&pin_GPIO15)
63+
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO14)
64+
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO15)
6565

6666
#endif // __INCLUDED_MPCONFIGPORT_H

0 commit comments

Comments
 (0)