aboutsummaryrefslogtreecommitdiff
path: root/ports/stm32/pin_static_af.h
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/stm32/pin_static_af.h
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/stm32/pin_static_af.h')
-rw-r--r--ports/stm32/pin_static_af.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ports/stm32/pin_static_af.h b/ports/stm32/pin_static_af.h
index f5f4e6fd4..49580a278 100644
--- a/ports/stm32/pin_static_af.h
+++ b/ports/stm32/pin_static_af.h
@@ -32,18 +32,18 @@
#if 0 // Enable to test if AF's are statically compiled
#define mp_hal_pin_config_alt_static(pin_obj, mode, pull, fn_type) \
- mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)); \
- _Static_assert(fn_type(pin_obj) != -1, ""); \
- _Static_assert(__builtin_constant_p(fn_type(pin_obj)) == 1, "")
+ mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)); \
+ _Static_assert(fn_type(pin_obj) != -1, ""); \
+ _Static_assert(__builtin_constant_p(fn_type(pin_obj)) == 1, "")
#else
#define mp_hal_pin_config_alt_static(pin_obj, mode, pull, fn_type) \
- mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)) /* Overflow Error => alt func not found */
+ mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)) /* Overflow Error => alt func not found */
#define mp_hal_pin_config_alt_static_speed(pin_obj, mode, pull, speed, fn_type) \
- mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)); /* Overflow Error => alt func not found */ \
- mp_hal_pin_config_speed(pin_obj, speed)
+ mp_hal_pin_config(pin_obj, mode, pull, fn_type(pin_obj)); /* Overflow Error => alt func not found */ \
+ mp_hal_pin_config_speed(pin_obj, speed)
#endif