2014-08-08 17:34:06 -04:00
|
|
|
// stm32f4xx_prefix.c becomes the initial portion of the generated pins file.
|
2014-03-12 02:55:41 -04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-04-18 17:38:09 -04:00
|
|
|
|
2015-01-01 16:06:20 -05:00
|
|
|
#include "py/obj.h"
|
2015-10-30 19:03:58 -04:00
|
|
|
#include "py/mphal.h"
|
2014-03-12 02:55:41 -04:00
|
|
|
#include "pin.h"
|
|
|
|
|
|
|
|
#define AF(af_idx, af_fn, af_unit, af_type, af_ptr) \
|
|
|
|
{ \
|
2014-04-18 17:38:09 -04:00
|
|
|
{ &pin_af_type }, \
|
2014-07-22 10:57:36 -04:00
|
|
|
.name = MP_QSTR_AF ## af_idx ## _ ## af_fn ## af_unit, \
|
2014-03-12 02:55:41 -04:00
|
|
|
.idx = (af_idx), \
|
|
|
|
.fn = AF_FN_ ## af_fn, \
|
|
|
|
.unit = (af_unit), \
|
|
|
|
.type = AF_PIN_TYPE_ ## af_fn ## _ ## af_type, \
|
2018-04-11 02:14:58 -04:00
|
|
|
.reg = (af_ptr) \
|
2014-03-12 02:55:41 -04:00
|
|
|
}
|
|
|
|
|
2015-07-02 18:59:59 -04:00
|
|
|
#define PIN(p_port, p_pin, p_af, p_adc_num, p_adc_channel) \
|
2014-03-12 02:55:41 -04:00
|
|
|
{ \
|
2014-04-18 17:38:09 -04:00
|
|
|
{ &pin_type }, \
|
2014-07-22 10:57:36 -04:00
|
|
|
.name = MP_QSTR_ ## p_port ## p_pin, \
|
2014-03-12 02:55:41 -04:00
|
|
|
.port = PORT_ ## p_port, \
|
|
|
|
.pin = (p_pin), \
|
2015-07-08 14:46:35 -04:00
|
|
|
.num_af = (sizeof(p_af) / sizeof(pin_af_obj_t)), \
|
2014-03-12 02:55:41 -04:00
|
|
|
.pin_mask = (1 << ((p_pin) & 0x0f)), \
|
|
|
|
.gpio = GPIO ## p_port, \
|
|
|
|
.af = p_af, \
|
2014-03-24 13:49:23 -04:00
|
|
|
.adc_num = p_adc_num, \
|
|
|
|
.adc_channel = p_adc_channel, \
|
2014-03-12 02:55:41 -04:00
|
|
|
}
|