diff options
author | Fabien Poussin <fabien.poussin@gmail.com> | 2018-03-15 12:51:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 12:51:14 +0100 |
commit | 3add406135c78d44ebc38d810b22af5da19cd296 (patch) | |
tree | fd42297388ca04dc8ff202e40d491b73ff4c21d6 /tools/templates/board_gpio.tpl | |
parent | 345e218afd4f8009729dddc6eb541d8ec6a91565 (diff) | |
parent | dabdfca04e5f470d1eb83f72f18269bd294031b6 (diff) | |
download | ChibiOS-Contrib-3add406135c78d44ebc38d810b22af5da19cd296.tar.gz ChibiOS-Contrib-3add406135c78d44ebc38d810b22af5da19cd296.tar.bz2 ChibiOS-Contrib-3add406135c78d44ebc38d810b22af5da19cd296.zip |
Merge branch 'master' into update_tests
Diffstat (limited to 'tools/templates/board_gpio.tpl')
-rw-r--r-- | tools/templates/board_gpio.tpl | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tools/templates/board_gpio.tpl b/tools/templates/board_gpio.tpl new file mode 100644 index 0000000..07a316d --- /dev/null +++ b/tools/templates/board_gpio.tpl @@ -0,0 +1,55 @@ +#ifndef _BOARD_GPIO_H_ +#define _BOARD_GPIO_H_ + +/* Generated by mx2board.py */ + +{% for d, v in defines %} +#define {{ d }} {{ v }} +{%- endfor %} + +{% for p, v in ports %} +/* PORT {{p}} */ +#define VAL_GPIO{{p}}_MODER ( \ + {%- for i in v.MODER %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_OTYPER ( \ + {%- for i in v.OTYPER %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_OSPEEDR ( \ + {%- for i in v.OSPEEDR %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_PUPDR ( \ + {%- for i in v.PUPDR %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_ODR ( \ + {%- for i in v.ODR %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_AFRL ( \ + {%- for i in v.AFRL %} + {{ i }} | \ + {%- endfor %} + 0) + +#define VAL_GPIO{{p}}_AFRH ( \ + {%- for i in v.AFRH %} + {{ i }} | \ + {%- endfor %} + 0) +{% endfor %} + +#endif
\ No newline at end of file |