Files @ 30ab6b66325f
Branch filter:

Location: FeatherHAB/wsprhab/inc/adc.h - annotation

Ethan Zonca
Add pilot tone and some power-saving stuff that really doesn't help at all
#ifndef __adc_H
#define __adc_H

#include "stm32f0xx_hal.h"


void adc_init(void); 
void adc_start(void);
void adc_stop(void);
uint8_t adc_get_vbatt(void);
int16_t adc_get_dietemp(void);
ADC_HandleTypeDef* adc_gethandle(void);

#endif