esp8266/machine_adc: Add read_u16 method and refactor.
This commit is contained in:
parent
625609a737
commit
0e72cc9029
@ -28,20 +28,32 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "py/runtime.h"
|
#include "py/runtime.h"
|
||||||
|
#include "py/mphal.h"
|
||||||
#include "user_interface.h"
|
#include "user_interface.h"
|
||||||
|
|
||||||
const mp_obj_type_t machine_adc_type;
|
|
||||||
|
|
||||||
typedef struct _machine_adc_obj_t {
|
typedef struct _machine_adc_obj_t {
|
||||||
mp_obj_base_t base;
|
mp_obj_base_t base;
|
||||||
bool isvdd;
|
bool isvdd;
|
||||||
} machine_adc_obj_t;
|
} machine_adc_obj_t;
|
||||||
|
|
||||||
|
extern const mp_obj_type_t machine_adc_type;
|
||||||
|
|
||||||
STATIC machine_adc_obj_t machine_adc_vdd3 = {{&machine_adc_type}, true};
|
STATIC machine_adc_obj_t machine_adc_vdd3 = {{&machine_adc_type}, true};
|
||||||
STATIC machine_adc_obj_t machine_adc_adc = {{&machine_adc_type}, false};
|
STATIC machine_adc_obj_t machine_adc_adc = {{&machine_adc_type}, false};
|
||||||
|
|
||||||
STATIC mp_obj_t machine_adc_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw,
|
STATIC uint16_t adc_read(machine_adc_obj_t *self) {
|
||||||
const mp_obj_t *args) {
|
if (self->isvdd) {
|
||||||
|
return system_get_vdd33();
|
||||||
|
} else {
|
||||||
|
return system_adc_read();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void machine_adc_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
||||||
|
machine_adc_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
|
mp_printf(print, "ADC(%u)", self->isvdd);
|
||||||
|
}
|
||||||
|
|
||||||
|
mp_obj_t machine_adc_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
||||||
mp_arg_check_num(n_args, n_kw, 1, 1, false);
|
mp_arg_check_num(n_args, n_kw, 1, 1, false);
|
||||||
|
|
||||||
mp_int_t chn = mp_obj_get_int(args[0]);
|
mp_int_t chn = mp_obj_get_int(args[0]);
|
||||||
@ -52,23 +64,27 @@ STATIC mp_obj_t machine_adc_make_new(const mp_obj_type_t *type_in, size_t n_args
|
|||||||
case 1:
|
case 1:
|
||||||
return &machine_adc_vdd3;
|
return &machine_adc_vdd3;
|
||||||
default:
|
default:
|
||||||
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError, "ADC(%d) doesn't exist", chn));
|
||||||
"not a valid ADC Channel: %d", chn));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC mp_obj_t machine_adc_read(mp_obj_t self_in) {
|
// read_u16()
|
||||||
machine_adc_obj_t *adc = self_in;
|
STATIC mp_obj_t machine_adc_read_u16(mp_obj_t self_in) {
|
||||||
|
machine_adc_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
|
uint32_t value = adc_read(self);
|
||||||
|
return MP_OBJ_NEW_SMALL_INT(value * 65535 / 1024);
|
||||||
|
}
|
||||||
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(machine_adc_read_u16_obj, machine_adc_read_u16);
|
||||||
|
|
||||||
if (adc->isvdd) {
|
// Legacy method
|
||||||
return mp_obj_new_int(system_get_vdd33());
|
STATIC mp_obj_t machine_adc_read(mp_obj_t self_in) {
|
||||||
} else {
|
machine_adc_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
return mp_obj_new_int(system_adc_read());
|
return mp_obj_new_int(adc_read(self));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
STATIC MP_DEFINE_CONST_FUN_OBJ_1(machine_adc_read_obj, machine_adc_read);
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(machine_adc_read_obj, machine_adc_read);
|
||||||
|
|
||||||
STATIC const mp_rom_map_elem_t machine_adc_locals_dict_table[] = {
|
STATIC const mp_rom_map_elem_t machine_adc_locals_dict_table[] = {
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_read_u16), MP_ROM_PTR(&machine_adc_read_u16_obj) },
|
||||||
{ MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&machine_adc_read_obj) }
|
{ MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&machine_adc_read_obj) }
|
||||||
};
|
};
|
||||||
STATIC MP_DEFINE_CONST_DICT(machine_adc_locals_dict, machine_adc_locals_dict_table);
|
STATIC MP_DEFINE_CONST_DICT(machine_adc_locals_dict, machine_adc_locals_dict_table);
|
||||||
@ -76,6 +92,7 @@ STATIC MP_DEFINE_CONST_DICT(machine_adc_locals_dict, machine_adc_locals_dict_tab
|
|||||||
const mp_obj_type_t machine_adc_type = {
|
const mp_obj_type_t machine_adc_type = {
|
||||||
{ &mp_type_type },
|
{ &mp_type_type },
|
||||||
.name = MP_QSTR_ADC,
|
.name = MP_QSTR_ADC,
|
||||||
|
.print = machine_adc_print,
|
||||||
.make_new = machine_adc_make_new,
|
.make_new = machine_adc_make_new,
|
||||||
.locals_dict = (mp_obj_dict_t*)&machine_adc_locals_dict,
|
.locals_dict = (mp_obj_dict_t*)&machine_adc_locals_dict,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user