ADC

Low-level ADC peripheral driver interface.

This is a very simple ADC interface to allow platform independent access to a MCU’s ADC unit(s). This interface is intentionally designed as simple as possible, to allow for very easy implementation and maximal portability.

As of now, the interface does not allow for any advanced ADC concepts (e.g. continuous mode, scan sequences, injections). It is to be determined, if these features will ever be integrated in this interface, or if it does make more sense to create a second, advanced ADC interface for this.

The ADC driver interface is built around the concept of ADC lines. An ADC line in this context is a tuple consisting out of a hardware ADC device (an ADC functional unit on the MCU) and an ADC channel connected to pin.

If a MCU has more than one hardware ADC unit, the ADC lines can be mapped in a way, that it is possible to sample multiple lines in parallel, given that the ADC implementation allows for interruption of the program flow while waiting for the result of a conversion (e.g. through putting the calling thread to sleep while waiting for the conversion results).

Extend interface for continuous mode?

enum adc_res_t
ADC_RES_7BIT =             (0 << 4)
ADC resolution: 7 bit.
ADC_RES_9BIT =             (1 << 4)
ADC resolution: 9 bit.
ADC_RES_11BIT
ADC resolution: 11 bit.
ADC_RES_6BIT =             (0xa00)
not supported by hardware
ADC_RES_8BIT =             (0xb00)
not supported by hardware
ADC_RES_10BIT =             (2 << 4)
ADC resolution: 10 bit.
ADC_RES_12BIT =             (3 << 4)
ADC resolution: 12 bit.
ADC_RES_14BIT =             (0xc00)
not supported by hardware
ADC_RES_16BIT =             (0xd00)
not supported by hardware
unsigned int adc_t

Define default ADC type identifier.

int adc_init(adc.h::adc_t line)

Initialize the given ADC line.

The ADC line is initialized in synchronous, blocking mode.

Parameters

line:line to initialize

Return values

  • 0 on success
  • -1 on invalid ADC line
int adc_sample(adc.h::adc_t line, cc2538/include/periph_cpu.h::adc_res_t res)

Sample a value from the given ADC line.

This function blocks until the conversion has finished. Please note, that if more than one line share the same ADC device, and if these lines are sampled at the same time (e.g. from different threads), the one called secondly waits for the first to finish before its conversion starts.

Parameters

line:line to sample
res:resolution to use for conversion

Return values

  • the sampled value on success
  • -1 if resolution is not applicable
ADC_UNDEF

Default ADC undefined value.

1
(UINT_MAX)
ADC_LINE( x)

Default ADC line access macro.

1
(x)