diff options
author | Emmanuel Blot <emmanuel.blot@free.fr> | 2014-06-19 18:54:34 +0200 |
---|---|---|
committer | Emmanuel Blot <emmanuel.blot@free.fr> | 2014-06-19 18:54:34 +0200 |
commit | f6932d650620d3753b5a18df5131227276260f74 (patch) | |
tree | 977c539a77da4fa73d547414b78c266e511cfc46 /stmhal/timer.c | |
parent | bf3366a48bca2808ae04ac49e5f5737481d28b57 (diff) | |
download | micropython-f6932d650620d3753b5a18df5131227276260f74.tar.gz micropython-f6932d650620d3753b5a18df5131227276260f74.zip |
Prefix ARRAY_SIZE with micropython prefix MP_
Diffstat (limited to 'stmhal/timer.c')
-rw-r--r-- | stmhal/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stmhal/timer.c b/stmhal/timer.c index 0ba24754b2..ec0c4dec4c 100644 --- a/stmhal/timer.c +++ b/stmhal/timer.c @@ -105,7 +105,7 @@ static uint32_t tim3_counter = 0; // Used to do callbacks to Python code on interrupt STATIC pyb_timer_obj_t *pyb_timer_obj_all[14]; -#define PYB_TIMER_OBJ_ALL_NUM ARRAY_SIZE(pyb_timer_obj_all) +#define PYB_TIMER_OBJ_ALL_NUM MP_ARRAY_SIZE(pyb_timer_obj_all) void timer_init0(void) { tim3_counter = 0; @@ -234,7 +234,7 @@ STATIC const mp_arg_t pyb_timer_init_args[] = { { MP_QSTR_mode, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = TIM_COUNTERMODE_UP} }, { MP_QSTR_div, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = TIM_CLOCKDIVISION_DIV1} }, }; -#define PYB_TIMER_INIT_NUM_ARGS ARRAY_SIZE(pyb_timer_init_args) +#define PYB_TIMER_INIT_NUM_ARGS MP_ARRAY_SIZE(pyb_timer_init_args) STATIC mp_obj_t pyb_timer_init_helper(pyb_timer_obj_t *self, uint n_args, const mp_obj_t *args, mp_map_t *kw_args) { // parse args |