summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/boards/make-pins.py
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/boards/make-pins.py
parent4b67463be1d1c5e6f02f4c8159ff3fcfca4a2f09 (diff)
downloadmicropython-284efa89ae25f75686754f0b6b8fd06526c05971.tar.gz
micropython-284efa89ae25f75686754f0b6b8fd06526c05971.zip
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/boards/make-pins.py')
-rwxr-xr-xstmhal/boards/make-pins.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/stmhal/boards/make-pins.py b/stmhal/boards/make-pins.py
index f3d1dee487..cc580f7cd7 100755
--- a/stmhal/boards/make-pins.py
+++ b/stmhal/boards/make-pins.py
@@ -326,13 +326,13 @@ def main():
"-a", "--af",
dest="af_filename",
help="Specifies the alternate function file for the chip",
- default="stm32f4xx-af.csv"
+ default="stm32f4xx_af.csv"
)
parser.add_argument(
"--af-const",
dest="af_const_filename",
help="Specifies header file for alternate function constants.",
- default="build/pins-af-const.h"
+ default="build/pins_af_const.h"
)
parser.add_argument(
"-b", "--board",
@@ -343,13 +343,13 @@ def main():
"-p", "--prefix",
dest="prefix_filename",
help="Specifies beginning portion of generated pins file",
- default="stm32f4xx-prefix.c"
+ default="stm32f4xx_prefix.c"
)
parser.add_argument(
"-q", "--qstr",
dest="qstr_filename",
help="Specifies name of generated qstr header file",
- default="build/pins-qstr.h"
+ default="build/pins_qstr.h"
)
parser.add_argument(
"-r", "--hdr",