File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ports/nrf/common-hal/_bleio Expand file tree Collapse file tree 2 files changed +3
-3
lines changed 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