summaryrefslogtreecommitdiff
path: root/stmhal/pin.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-08 22:34:06 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-08 22:34:06 +0100
commit284efa89ae25f75686754f0b6b8fd06526c05971 (patch)
treec2f86d74a8671dc1129b652416ace92952d811a6 /stmhal/pin.c
parent4b67463be1d1c5e6f02f4c8159ff3fcfca4a2f09 (diff)
stmhal/teensy: Use _ instead of - in source file names.
Trying to move towards consistency, let's use _ exclusively in names of source files (eg .c, .h, .csv).
Diffstat (limited to 'stmhal/pin.c')
-rw-r--r--stmhal/pin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pin.c b/stmhal/pin.c
index dbc0b5f14..0271ced30 100644
--- a/stmhal/pin.c
+++ b/stmhal/pin.c
@@ -534,7 +534,7 @@ STATIC const mp_map_elem_t pin_locals_dict_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_PULL_UP), MP_OBJ_NEW_SMALL_INT(GPIO_PULLUP) },
{ MP_OBJ_NEW_QSTR(MP_QSTR_PULL_DOWN), MP_OBJ_NEW_SMALL_INT(GPIO_PULLDOWN) },
-#include "genhdr/pins-af-const.h"
+#include "genhdr/pins_af_const.h"
};
STATIC MP_DEFINE_CONST_DICT(pin_locals_dict, pin_locals_dict_table);