File tree Expand file tree Collapse file tree 7 files changed +8
-15
lines changed
circuitplayground_express_crickit
circuitplayground_express_displayio
circuitplayground_express Expand file tree Collapse file tree 7 files changed +8
-15
lines changed Original file line number Diff line number Diff line change 8
8
msgstr ""
9
9
"Project-Id-Version : PACKAGE VERSION\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2020-09-12 18:06 +0530\n "
11
+ "POT-Creation-Date : 2020-09-13 22:53 +0530\n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
14
"
Language-Team :
LANGUAGE <[email protected] >\n "
@@ -576,12 +576,6 @@ msgid ""
576
576
"boot. Press again to exit safe mode.\n"
577
577
msgstr ""
578
578
579
- #: supervisor/shared/safe_mode.c
580
- msgid ""
581
- "CircuitPython is in safe mode with status being USER_SAFE_MODE but no "
582
- "specific reason was provided.\n"
583
- msgstr ""
584
-
585
579
#: supervisor/shared/safe_mode.c
586
580
msgid "CircuitPython was unable to allocate the heap.\n"
587
581
msgstr ""
Original file line number Diff line number Diff line change 25
25
#define CALIBRATE_CRYSTALLESS 1
26
26
27
27
// Explanation of how a user got into safe mode.
28
- #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up\n"
28
+ #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up. \n"
29
29
30
30
// Increase stack size slightly due to CPX library import nesting
31
31
#define CIRCUITPY_DEFAULT_STACK_SIZE (4248) //divisible by 8
Original file line number Diff line number Diff line change 27
27
#define USER_NEOPIXELS_PIN (&pin_PB23)
28
28
29
29
// Explanation of how a user got into safe mode.
30
- #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up\n"
30
+ #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up. \n"
31
31
32
32
// Increase stack size slightly due to CPX library import nesting
33
33
#define CIRCUITPY_DEFAULT_STACK_SIZE (4248) // divisible by 8
Original file line number Diff line number Diff line change 25
25
#define CALIBRATE_CRYSTALLESS 1
26
26
27
27
// Explanation of how a user got into safe mode.
28
- #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up\n"
28
+ #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up. \n"
29
29
30
30
// Increase stack size slightly due to CPX library import nesting.
31
31
#define CIRCUITPY_DEFAULT_STACK_SIZE (4248) // divisible by 8
Original file line number Diff line number Diff line change 11
11
#define CALIBRATE_CRYSTALLESS 1
12
12
13
13
// Explanation of how a user got into safe mode.
14
- #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up\n"
14
+ #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up. \n"
15
15
16
16
#define DEFAULT_I2C_BUS_SCL (&pin_PA08)
17
17
#define DEFAULT_I2C_BUS_SDA (&pin_PA09)
Original file line number Diff line number Diff line change 11
11
#define CALIBRATE_CRYSTALLESS 1
12
12
13
13
// Explanation of how a user got into safe mode.
14
- #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up\n"
14
+ #define BOARD_USER_SAFE_MODE_ACTION "pressing both buttons at start up. \n"
15
15
16
16
#define DEFAULT_I2C_BUS_SCL (&pin_PA01)
17
17
#define DEFAULT_I2C_BUS_SDA (&pin_PA00)
Original file line number Diff line number Diff line change @@ -123,8 +123,7 @@ void print_safe_mode_message(safe_mode_t reason) {
123
123
serial_write_compressed (translate ("To exit, please reset the board without " ));
124
124
serial_write_compressed (translate (BOARD_USER_SAFE_MODE_ACTION ));
125
125
#else
126
- // fallthrough
127
- serial_write_compressed (translate ("CircuitPython is in safe mode with status being USER_SAFE_MODE but no specific reason was provided.\n" ));
126
+ break ;
128
127
#endif
129
128
return ;
130
129
case MANUAL_SAFE_MODE :
@@ -189,4 +188,4 @@ void print_safe_mode_message(safe_mode_t reason) {
189
188
break ;
190
189
}
191
190
serial_write_compressed (FILE_AN_ISSUE );
192
- }
191
+ }
You can’t perform that action at this time.
0 commit comments