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