diff options
| author | arturo182 <arturo182@tlen.pl> | 2018-06-25 23:38:10 +0200 |
|---|---|---|
| committer | arturo182 <arturo182@tlen.pl> | 2018-06-25 23:38:10 +0200 |
| commit | b14d13e318489cfd6850387be526ce293a200dcb (patch) | |
| tree | 6137d2d408dffd9adb2ba9af779733cf470298e0 | |
| parent | c1924f375d5398586887fc68b778080c420f9d4c (diff) | |
nrf: Remove leftovers from stm32 code copy
| -rw-r--r-- | ports/nrf/mphalport.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ports/nrf/mphalport.c b/ports/nrf/mphalport.c index 957d3535d..1d4e795c0 100644 --- a/ports/nrf/mphalport.c +++ b/ports/nrf/mphalport.c @@ -33,19 +33,6 @@ #include "hal_uart.h" #define UART_INSTANCE UART_BASE(0) -FIL* boot_output_file; - -// this table converts from HAL_StatusTypeDef to POSIX errno -const byte mp_hal_status_to_errno_table[4] = { - [HAL_OK] = 0, - [HAL_ERROR] = MP_EIO, - [HAL_BUSY] = MP_EBUSY, - [HAL_TIMEOUT] = MP_ETIMEDOUT, -}; - -NORETURN void mp_hal_raise(HAL_StatusTypeDef status) { - nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(mp_hal_status_to_errno_table[status]))); -} #if (MICROPY_PY_BLE_NUS == 0) int mp_hal_stdin_rx_chr(void) { |
