From 1698a158b3ba91bccc1887733e31b19703caf61b Mon Sep 17 00:00:00 2001 From: Jakub Kaderka Date: Wed, 6 Mar 2019 19:54:44 +0100 Subject: Fixed gpio pin reset --- tools/mx2board.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') 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) -- cgit v1.2.3