2022-05-14 22:45:18 +00:00
|
|
|
#pragma once
|
2017-12-20 12:42:20 +00:00
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-07-17 15:10:07 +00:00
|
|
|
/*
|
|
|
|
http://resnet.uoregon.edu/~gurney_j/jmpc/bitwise.html
|
|
|
|
*/
|
|
|
|
#define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255)
|
|
|
|
#define BX_(x) ((x) - (((x)>>1)&0x77777777) - (((x)>>2)&0x33333333) - (((x)>>3)&0x11111111))
|
|
|
|
|
|
|
|
#define ADC_PIN_IDX(pin) BITCOUNT(ADC_CHAN_MSK & ((1 << (pin)) - 1))
|
|
|
|
|
|
|
|
#if BITCOUNT(ADC_CHAN_MSK) != ADC_CHAN_CNT
|
|
|
|
# error "ADC_CHAN_MSK oes not match ADC_CHAN_CNT"
|
|
|
|
#endif
|
2017-12-20 12:42:20 +00:00
|
|
|
|
2022-05-14 22:45:18 +00:00
|
|
|
extern volatile uint8_t adc_channel;
|
|
|
|
extern volatile uint16_t adc_values[ADC_CHAN_CNT];
|
2017-12-20 12:42:20 +00:00
|
|
|
|
2022-05-14 22:45:18 +00:00
|
|
|
extern void adc_init();
|
|
|
|
extern void adc_start_cycle(); //should be called from an atomic context only
|
|
|
|
static inline bool adc_cycle_done() { return adc_channel >= ADC_CHAN_CNT; }
|