aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJakub Kaderka <jakub.kaderka@gmail.com>2019-03-06 19:54:44 +0100
committerJakub Kaderka <jakub.kaderka@gmail.com>2019-03-06 19:54:44 +0100
commit1698a158b3ba91bccc1887733e31b19703caf61b (patch)
treefe5afbb9f6e728ac62ca6afe3df1d1c1c2df4061 /tools
parentb82dd2d0266dfdb91e8563536af74cf3727b91c2 (diff)
downloadChibiOS-Contrib-1698a158b3ba91bccc1887733e31b19703caf61b.tar.gz
ChibiOS-Contrib-1698a158b3ba91bccc1887733e31b19703caf61b.tar.bz2
ChibiOS-Contrib-1698a158b3ba91bccc1887733e31b19703caf61b.zip
Fixed gpio pin reset
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mx2board.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mx2board.py b/tools/mx2board.py
index 6e09d39..4ad3e97 100755
--- a/tools/mx2board.py
+++ b/tools/mx2board.py
@@ -71,7 +71,8 @@ PIN_PUPDR_TRANSLATE = {"GPIO_NOPULL": PIN_PUPDR_FLOATING,
"GPIO_PULLDOWN": PIN_PUPDR_PULLDOWN}
PIN_ODR_TRANSLATE = {"GPIO_PIN_SET": PIN_ODR_HIGH,
- "GPIO_PIN_CLEAR": PIN_ODR_LOW}
+ "GPIO_PIN_CLEAR": PIN_ODR_LOW,
+ "GPIO_PIN_RESET": PIN_ODR_LOW }
parser = ArgumentParser(description='Generate ChibiOS GPIO header file from STM32CubeMX project files.')
group = parser.add_mutually_exclusive_group(required=False)