aboutsummaryrefslogtreecommitdiff
path: root/ports/nrf/mphalport.c
diff options
context:
space:
mode:
authorDamien George2020-02-27 15:36:53 +1100
committerDamien George2020-02-28 10:33:03 +1100
commit69661f3343bedf86e514337cff63d96cc42f8859 (patch)
treeaf5dfb380ffdb75dda84828f63cf9d840d992f0f /ports/nrf/mphalport.c
parent3f39d18c2b884d32f0443e2e8114ff9d7a14d718 (diff)
all: Reformat C and Python source code with tools/codeformat.py.
This is run with uncrustify 0.70.1, and black 19.10b0.
Diffstat (limited to 'ports/nrf/mphalport.c')
-rw-r--r--ports/nrf/mphalport.c52
1 files changed, 25 insertions, 27 deletions
diff --git a/ports/nrf/mphalport.c b/ports/nrf/mphalport.c
index 57d61b041..bdedea9d0 100644
--- a/ports/nrf/mphalport.c
+++ b/ports/nrf/mphalport.c
@@ -93,16 +93,15 @@ void mp_hal_stdout_tx_str(const char *str) {
mp_hal_stdout_tx_strn(str, strlen(str));
}
-void mp_hal_delay_us(mp_uint_t us)
-{
+void mp_hal_delay_us(mp_uint_t us) {
if (us == 0) {
return;
}
- register uint32_t delay __ASM ("r0") = us;
+ register uint32_t delay __ASM("r0") = us;
__ASM volatile (
-#ifdef NRF51
- ".syntax unified\n"
-#endif
+ #ifdef NRF51
+ ".syntax unified\n"
+ #endif
"1:\n"
" SUBS %0, %0, #1\n"
" NOP\n"
@@ -117,7 +116,7 @@ void mp_hal_delay_us(mp_uint_t us)
" NOP\n"
" NOP\n"
" NOP\n"
-#if defined(NRF52) || defined(NRF9160_XXAA)
+ #if defined(NRF52) || defined(NRF9160_XXAA)
" NOP\n"
" NOP\n"
" NOP\n"
@@ -164,13 +163,12 @@ void mp_hal_delay_us(mp_uint_t us)
" NOP\n"
" NOP\n"
" NOP\n"
-#endif
+ #endif
" BNE 1b\n"
: "+r" (delay));
}
-void mp_hal_delay_ms(mp_uint_t ms)
-{
+void mp_hal_delay_ms(mp_uint_t ms) {
for (mp_uint_t i = 0; i < ms; i++)
{
mp_hal_delay_us(999);
@@ -181,21 +179,21 @@ void mp_hal_delay_ms(mp_uint_t ms)
static const char nrfx_error_unknown[1] = "";
-static const char nrfx_error_success[] = "NRFX_SUCCESS";
-static const char nrfx_error_internal[] = "NRFX_ERROR_INTERNAL";
-static const char nrfx_error_no_mem[] = "NRFX_ERROR_NO_MEM";
-static const char nrfx_error_not_supported[] = "NRFX_ERROR_NOT_SUPPORTED";
-static const char nrfx_error_invalid_param[] = "NRFX_ERROR_INVALID_PARAM";
-static const char nrfx_error_invalid_state[] = "NRFX_ERROR_INVALID_STATE";
-static const char nrfx_error_invalid_length[] = "NRFX_ERROR_INVALID_LENGTH";
-static const char nrfx_error_timeout[] = "NRFX_ERROR_TIMEOUT";
-static const char nrfx_error_forbidden[] = "NRFX_ERROR_FORBIDDEN";
-static const char nrfx_error_null[] = "NRFX_ERROR_NULL";
-static const char nrfx_error_invalid_addr[] = "NRFX_ERROR_INVALID_ADDR";
-static const char nrfx_error_busy[] = "NRFX_ERROR_BUSY";
+static const char nrfx_error_success[] = "NRFX_SUCCESS";
+static const char nrfx_error_internal[] = "NRFX_ERROR_INTERNAL";
+static const char nrfx_error_no_mem[] = "NRFX_ERROR_NO_MEM";
+static const char nrfx_error_not_supported[] = "NRFX_ERROR_NOT_SUPPORTED";
+static const char nrfx_error_invalid_param[] = "NRFX_ERROR_INVALID_PARAM";
+static const char nrfx_error_invalid_state[] = "NRFX_ERROR_INVALID_STATE";
+static const char nrfx_error_invalid_length[] = "NRFX_ERROR_INVALID_LENGTH";
+static const char nrfx_error_timeout[] = "NRFX_ERROR_TIMEOUT";
+static const char nrfx_error_forbidden[] = "NRFX_ERROR_FORBIDDEN";
+static const char nrfx_error_null[] = "NRFX_ERROR_NULL";
+static const char nrfx_error_invalid_addr[] = "NRFX_ERROR_INVALID_ADDR";
+static const char nrfx_error_busy[] = "NRFX_ERROR_BUSY";
static const char nrfx_error_already_initalized[] = "NRFX_ERROR_ALREADY_INITIALIZED";
-static const char * nrfx_error_strings[13] = {
+static const char *nrfx_error_strings[13] = {
nrfx_error_success,
nrfx_error_internal,
nrfx_error_no_mem,
@@ -212,16 +210,16 @@ static const char * nrfx_error_strings[13] = {
};
static const char nrfx_drv_error_twi_err_overrun[] = "NRFX_ERROR_DRV_TWI_ERR_OVERRUN";
-static const char nrfx_drv_error_twi_err_anack[] = "NRFX_ERROR_DRV_TWI_ERR_ANACK";
-static const char nrfx_drv_error_twi_err_dnack[] = "NRFX_ERROR_DRV_TWI_ERR_DNACK";
+static const char nrfx_drv_error_twi_err_anack[] = "NRFX_ERROR_DRV_TWI_ERR_ANACK";
+static const char nrfx_drv_error_twi_err_dnack[] = "NRFX_ERROR_DRV_TWI_ERR_DNACK";
-static const char * nrfx_drv_error_strings[3] = {
+static const char *nrfx_drv_error_strings[3] = {
nrfx_drv_error_twi_err_overrun,
nrfx_drv_error_twi_err_anack,
nrfx_drv_error_twi_err_dnack
};
-const char * nrfx_error_code_lookup(uint32_t err_code) {
+const char *nrfx_error_code_lookup(uint32_t err_code) {
if (err_code >= NRFX_ERROR_BASE_NUM && err_code <= NRFX_ERROR_BASE_NUM + 13) {
return nrfx_error_strings[err_code - NRFX_ERROR_BASE_NUM];
} else if (err_code >= NRFX_ERROR_DRIVERS_BASE_NUM && err_code <= NRFX_ERROR_DRIVERS_BASE_NUM + 3) {