diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-08-08 22:34:06 +0100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-08-08 22:34:06 +0100 |
| commit | 284efa89ae25f75686754f0b6b8fd06526c05971 (patch) | |
| tree | c2f86d74a8671dc1129b652416ace92952d811a6 /stmhal/boards/stm32f4xx_prefix.c | |
| parent | 4b67463be1d1c5e6f02f4c8159ff3fcfca4a2f09 (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/boards/stm32f4xx_prefix.c')
| -rw-r--r-- | stmhal/boards/stm32f4xx_prefix.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/stmhal/boards/stm32f4xx_prefix.c b/stmhal/boards/stm32f4xx_prefix.c new file mode 100644 index 000000000..c20030172 --- /dev/null +++ b/stmhal/boards/stm32f4xx_prefix.c @@ -0,0 +1,37 @@ +// stm32f4xx_prefix.c becomes the initial portion of the generated pins file. + +#include <stdio.h> +#include <stdint.h> + +#include "stm32f4xx_hal.h" + +#include "mpconfig.h" +#include "misc.h" +#include "qstr.h" +#include "obj.h" +#include "pin.h" + +#define AF(af_idx, af_fn, af_unit, af_type, af_ptr) \ +{ \ + { &pin_af_type }, \ + .name = MP_QSTR_AF ## af_idx ## _ ## af_fn ## af_unit, \ + .idx = (af_idx), \ + .fn = AF_FN_ ## af_fn, \ + .unit = (af_unit), \ + .type = AF_PIN_TYPE_ ## af_fn ## _ ## af_type, \ + .af_fn = (af_ptr) \ +} + +#define PIN(p_port, p_pin, p_num_af, p_af, p_adc_num, p_adc_channel) \ +{ \ + { &pin_type }, \ + .name = MP_QSTR_ ## p_port ## p_pin, \ + .port = PORT_ ## p_port, \ + .pin = (p_pin), \ + .num_af = (p_num_af), \ + .pin_mask = (1 << ((p_pin) & 0x0f)), \ + .gpio = GPIO ## p_port, \ + .af = p_af, \ + .adc_num = p_adc_num, \ + .adc_channel = p_adc_channel, \ +} |
