File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
ports/nrf/common-hal/_bleio Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -1199,7 +1199,9 @@ msgid "Invalid DAC pin supplied"
1199
1199
msgstr ""
1200
1200
1201
1201
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
1202
- #: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
1202
+ #: ports/cxd56/common-hal/pwmio/PWMOut.c
1203
+ #: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
1204
+ #: ports/nrf/common-hal/pwmio/PWMOut.c
1203
1205
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
1204
1206
msgid "Invalid PWM frequency"
1205
1207
msgstr ""
@@ -1579,11 +1581,11 @@ msgid "No timer available"
1579
1581
msgstr ""
1580
1582
1581
1583
#: supervisor/shared/safe_mode.c
1582
- msgid "Nordic Soft Device failure assertion."
1584
+ msgid "Nordic system firmware failure assertion."
1583
1585
msgstr ""
1584
1586
1585
1587
#: ports/nrf/common-hal/_bleio/__init__.c
1586
- msgid "Nordic soft device out of memory"
1588
+ msgid "Nordic system firmware out of memory"
1587
1589
msgstr ""
1588
1590
1589
1591
#: shared-bindings/ipaddress/IPv4Address.c shared-bindings/ipaddress/__init__.c
@@ -2233,7 +2235,7 @@ msgstr ""
2233
2235
2234
2236
#: ports/nrf/common-hal/_bleio/__init__.c
2235
2237
#, c-format
2236
- msgid "Unknown soft device error: %04x"
2238
+ msgid "Unknown system firmware error: %04x"
2237
2239
msgstr ""
2238
2240
2239
2241
#: shared-bindings/_pixelbuf/PixelBuf.c
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ void check_nrf_error(uint32_t err_code) {
47
47
}
48
48
switch (err_code ) {
49
49
case NRF_ERROR_NO_MEM :
50
- mp_raise_msg (& mp_type_MemoryError , translate ("Nordic soft device out of memory" ));
50
+ mp_raise_msg (& mp_type_MemoryError , translate ("Nordic system firmware out of memory" ));
51
51
return ;
52
52
case NRF_ERROR_TIMEOUT :
53
53
mp_raise_msg (& mp_type_TimeoutError , NULL );
@@ -56,7 +56,7 @@ void check_nrf_error(uint32_t err_code) {
56
56
mp_raise_ConnectionError (translate ("Not connected" ));
57
57
return ;
58
58
default :
59
- mp_raise_bleio_BluetoothError (translate ("Unknown soft device error: %04x" ), err_code );
59
+ mp_raise_bleio_BluetoothError (translate ("Unknown system firmware error: %04x" ), err_code );
60
60
break ;
61
61
}
62
62
}
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ void print_safe_mode_message(safe_mode_t reason) {
182
182
// defined in ports/nrf/bluetooth/bluetooth_common.mk
183
183
// will print "Unknown reason" if somehow encountered on other ports
184
184
case NORDIC_SOFT_DEVICE_ASSERT :
185
- serial_write_compressed (translate ("Nordic Soft Device failure assertion." ));
185
+ serial_write_compressed (translate ("Nordic system firmware failure assertion." ));
186
186
break ;
187
187
#endif
188
188
case FLASH_WRITE_FAIL :
You can’t perform that action at this time.
0 commit comments