diff options
author | Damien George <damien.p.george@gmail.com> | 2017-07-19 13:12:10 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-07-19 13:12:10 +1000 |
commit | 761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f (patch) | |
tree | ca794059e302b1947125d36f64c667acdde6ddbe /stmhal/timer.c | |
parent | c972c60dbe72d7448faff7f631dfb798b694093e (diff) | |
download | micropython-761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f.tar.gz micropython-761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f.zip |
all: Remove trailing spaces, per coding conventions.
Diffstat (limited to 'stmhal/timer.c')
-rw-r--r-- | stmhal/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/timer.c b/stmhal/timer.c index 39f168fc89..6513f95d37 100644 --- a/stmhal/timer.c +++ b/stmhal/timer.c @@ -1149,7 +1149,7 @@ STATIC mp_obj_t pyb_timer_period(mp_uint_t n_args, const mp_obj_t *args) { // Reset the counter to zero. Otherwise, if counter >= period it will // continue counting until it wraps (at either 16 or 32 bits depending // on the timer). - __HAL_TIM_SetCounter(&self->tim, 0); + __HAL_TIM_SetCounter(&self->tim, 0); return mp_const_none; } } |