diff options
Diffstat (limited to 'stmhal/pin.c')
-rw-r--r-- | stmhal/pin.c | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/stmhal/pin.c b/stmhal/pin.c new file mode 100644 index 0000000000..735901c306 --- /dev/null +++ b/stmhal/pin.c @@ -0,0 +1,78 @@ +#include <stdio.h> +#include <stdint.h> +#include <string.h> +#include <stm32f4xx_hal.h> + +#include "misc.h" +#include "mpconfig.h" +#include "qstr.h" +#include "obj.h" + +#include "pin.h" + +#if 0 +void pin_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { + pin_obj_t *self = self_in; + print(env, "<Pin %s>", self->name); +} + +mp_obj_t pin_obj_name(mp_obj_t self_in) { + pin_obj_t *self = self_in; + return MP_OBJ_NEW_QSTR(qstr_from_str(self->name)); +} + +mp_obj_t pin_obj_port(mp_obj_t self_in) { + pin_obj_t *self = self_in; + return MP_OBJ_NEW_SMALL_INT((mp_small_int_t)self->port); +} + +mp_obj_t pin_obj_pin(mp_obj_t self_in) { + pin_obj_t *self = self_in; + return MP_OBJ_NEW_SMALL_INT((mp_small_int_t)self->pin); +} + +static MP_DEFINE_CONST_FUN_OBJ_1(pin_obj_name_obj, pin_obj_name); +static MP_DEFINE_CONST_FUN_OBJ_1(pin_obj_port_obj, pin_obj_port); +static MP_DEFINE_CONST_FUN_OBJ_1(pin_obj_pin_obj, pin_obj_pin); + +static const mp_method_t pin_methods[] = { + { "name", &pin_obj_name_obj }, + { "port", &pin_obj_port_obj }, + { "pin", &pin_obj_pin_obj }, + { NULL, NULL }, +}; +#endif + +const mp_obj_type_t pin_obj_type = { +#if 0 + { &mp_type_type }, +#else + { NULL }, +#endif + .name = MP_QSTR_Pin, +#if 0 + .print = pin_obj_print, + .methods = pin_methods, +#endif +}; + +#if 0 +void pin_af_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { + pin_af_obj_t *self = self_in; + print(env, "<Pin AF %d fn:%d unit:%d typ:%d>", self->idx, self->fn, + self->unit, self->type); +} +#endif + +const mp_obj_type_t pin_af_obj_type = { +#if 0 + { &mp_type_type }, +#else + { NULL }, +#endif + .name = MP_QSTR_PinAF, +#if 0 + .print = pin_af_obj_print, +#endif +}; + |