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>
|
|
|
|
#include <stdint.h>
|
2014-04-18 17:38:09 -04:00
|
|
|
|
|
|
|
#include "stm32f4xx_hal.h"
|
2014-03-12 02:55:41 -04:00
|
|
|
|
|
|
|
#include "mpconfig.h"
|
2014-06-28 16:32:03 -04:00
|
|
|
#include "misc.h"
|
2014-03-12 02:55:41 -04:00
|
|
|
#include "qstr.h"
|
|
|
|
#include "obj.h"
|
|
|
|
#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, \
|
|
|
|
.af_fn = (af_ptr) \
|
|
|
|
}
|
|
|
|
|
2014-03-24 13:49:23 -04:00
|
|
|
#define PIN(p_port, p_pin, p_num_af, 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), \
|
|
|
|
.num_af = (p_num_af), \
|
|
|
|
.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
|
|
|
}
|