diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-29 22:55:34 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-29 22:55:34 +0100 |
commit | 8d09640b22714fa9c66a5a7bbf9ab59a6a0c710d (patch) | |
tree | f8f196bf58661af9668b14f69a20c15765aa459b /stmhal/adc.c | |
parent | 186e463a9ea5f1f1cabd928ba363fb3f0c0de4dc (diff) |
stmhal: Add documentation in comments, and script to generate HTML.
Decided to write own script to pull documentation from comments in C code.
Style for writing auto generated documentation is: start line with ///
and then use standard markdown to write the comment. Keywords
recognised by the scraper begin with backslash. See code for examples.
Running: python gendoc.py modpyb.c accel.c adc.c dac.c extint.c i2c.c
led.c pin.c rng.c servo.c spi.c uart.c usrsw.c, will generate a HTML
structure in gendoc-out/.
gendoc.py is crude but functional. Needed something quick, and this was
it.
Diffstat (limited to 'stmhal/adc.c')
-rw-r--r-- | stmhal/adc.c | 44 |
1 files changed, 32 insertions, 12 deletions
diff --git a/stmhal/adc.c b/stmhal/adc.c index d7d2cf089..0cc2a9a90 100644 --- a/stmhal/adc.c +++ b/stmhal/adc.c @@ -14,16 +14,19 @@ #include "genhdr/pins.h" #include "timer.h" -// Usage Model: -// -// adc = pyb.ADC(pin) -// val = adc.read() -// -// adc = pyb.ADCAll(resolution) -// val = adc.read_channel(channel) -// val = adc.read_core_temp() -// val = adc.read_core_vbat() -// val = adc.read_core_vref() +/// \moduleref pyb +/// \class ADC - analog to digital conversion: read analog values on a pin +/// +/// Usage: +/// +/// adc = pyb.ADC(pin) # create an analog object from a pin +/// val = adc.read() # read an analog value +/// +/// adc = pyb.ADCAll(resolution) # creale an ADCAll object +/// val = adc.read_channel(channel) # read the given channel +/// val = adc.read_core_temp() # read MCU temperature +/// val = adc.read_core_vbat() # read MCU VBAT +/// val = adc.read_core_vref() # read MCU VREF /* ADC defintions */ #define ADCx (ADC1) @@ -118,6 +121,9 @@ STATIC void adc_print(void (*print)(void *env, const char *fmt, ...), void *env, print(env, " channel=%lu>", self->channel); } +/// \classmethod \constructor(pin) +/// Create an ADC object associated with the given pin. +/// This allows you to then read analog values on that pin. STATIC mp_obj_t adc_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { // check number of arguments mp_arg_check_num(n_args, n_kw, 1, 1, false); @@ -155,15 +161,30 @@ STATIC mp_obj_t adc_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_ return o; } +/// \method read() +/// Read the value on the analog pin and return it. The returned value +/// will be between 0 and 4095. STATIC mp_obj_t adc_read(mp_obj_t self_in) { pyb_obj_adc_t *self = self_in; uint32_t data = adc_read_channel(&self->handle); return mp_obj_new_int(data); } - STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_read_obj, adc_read); +/// \method read_timed(buf, freq) +/// Read analog values into the given buffer at the given frequency. +/// +/// Example: +/// +/// adc = pyb.ADC(pyb.Pin.board.X19) # create an ADC on pin X19 +/// buf = bytearray(100) # create a buffer of 100 bytes +/// adc.read_timed(buf, 10) # read analog values into buf at 10Hz +/// # this will take 10 seconds to finish +/// for val in buf: # loop over all values +/// print(val) # print the value out +/// +/// This function does not allocate any memory. STATIC mp_obj_t adc_read_timed(mp_obj_t self_in, mp_obj_t buf_in, mp_obj_t freq_in) { pyb_obj_adc_t *self = self_in; @@ -196,7 +217,6 @@ STATIC mp_obj_t adc_read_timed(mp_obj_t self_in, mp_obj_t buf_in, mp_obj_t freq_ return mp_obj_new_int(bufinfo.len); } - STATIC MP_DEFINE_CONST_FUN_OBJ_3(adc_read_timed_obj, adc_read_timed); STATIC const mp_map_elem_t adc_locals_dict_table[] = { |