Added safe mode button and fix coyright attribution
This commit is contained in:
parent
8fe44a23d2
commit
b815a4cc5e
|
@ -2642,7 +2642,7 @@ msgstr ""
|
||||||
msgid "can't set 512 block size"
|
msgid "can't set 512 block size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/objnamedtuple.c
|
#: py/objexcept.c py/objnamedtuple.c
|
||||||
msgid "can't set attribute"
|
msgid "can't set attribute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3844,6 +3844,11 @@ msgstr ""
|
||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/espressif/boards/m5stack_core_basic/mpconfigboard.h
|
||||||
|
#: ports/espressif/boards/m5stack_core_fire/mpconfigboard.h
|
||||||
|
msgid "pressing button A at start up.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/boards/aramcon2_badge/mpconfigboard.h
|
#: ports/nrf/boards/aramcon2_badge/mpconfigboard.h
|
||||||
msgid "pressing the left button at start up\n"
|
msgid "pressing the left button at start up\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
* Copyright (c) 2022 CDarius
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2022 Dan Halbert for Adafruit Industries
|
* Copyright (c) 2022 CDarius
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -38,6 +38,12 @@
|
||||||
#define CIRCUITPY_BOARD_UART (1)
|
#define CIRCUITPY_BOARD_UART (1)
|
||||||
#define CIRCUITPY_BOARD_UART_PIN {{.tx = &pin_GPIO17, .rx = &pin_GPIO16}}
|
#define CIRCUITPY_BOARD_UART_PIN {{.tx = &pin_GPIO17, .rx = &pin_GPIO16}}
|
||||||
|
|
||||||
|
// For entering safe mode
|
||||||
|
#define CIRCUITPY_BOOT_BUTTON (&pin_GPIO39)
|
||||||
|
|
||||||
|
// Explanation of how a user got into safe mode
|
||||||
|
#define BOARD_USER_SAFE_MODE_ACTION translate("pressing button A at start up.\n")
|
||||||
|
|
||||||
// UART pins attached to the USB-serial converter chip
|
// UART pins attached to the USB-serial converter chip
|
||||||
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO1)
|
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO1)
|
||||||
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO3)
|
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO3)
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
* Copyright (c) 2022 CDarius
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2022 Dan Halbert for Adafruit Industries
|
* Copyright (c) 2022 CDarius
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -39,6 +39,12 @@
|
||||||
// #define CIRCUITPY_BOARD_UART (1)
|
// #define CIRCUITPY_BOARD_UART (1)
|
||||||
// #define CIRCUITPY_BOARD_UART_PIN {{.tx = &pin_GPIO17, .rx = &pin_GPIO16}}
|
// #define CIRCUITPY_BOARD_UART_PIN {{.tx = &pin_GPIO17, .rx = &pin_GPIO16}}
|
||||||
|
|
||||||
|
// For entering safe mode
|
||||||
|
#define CIRCUITPY_BOOT_BUTTON (&pin_GPIO39)
|
||||||
|
|
||||||
|
// Explanation of how a user got into safe mode
|
||||||
|
#define BOARD_USER_SAFE_MODE_ACTION translate("pressing button A at start up.\n")
|
||||||
|
|
||||||
// UART pins attached to the USB-serial converter chip
|
// UART pins attached to the USB-serial converter chip
|
||||||
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO1)
|
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO1)
|
||||||
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO3)
|
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO3)
|
||||||
|
|
Loading…
Reference in New Issue