38 lines
870 B
C
38 lines
870 B
C
// ra_pin_prefix.c becomes the initial portion of the generated pins file.
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "py/obj.h"
|
|
#include "py/mphal.h"
|
|
#include "pin.h"
|
|
|
|
#if 0
|
|
#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) \
|
|
}
|
|
#endif
|
|
|
|
#define PIN_AD(p_name, p_pin, ad_bit, ad_channel) \
|
|
{ \
|
|
{ &machine_pin_type }, \
|
|
.name = MP_QSTR_##p_name, \
|
|
.pin = p_pin, \
|
|
.bit = ad_bit, \
|
|
.channel = ad_channel \
|
|
}
|
|
|
|
#define PIN(p_name, p_pin, p_ad) \
|
|
{ \
|
|
{ &machine_pin_type }, \
|
|
.name = MP_QSTR_##p_name, \
|
|
.pin = p_pin, \
|
|
.ad = p_ad, \
|
|
}
|