Add ADC code to measure temperature. Supervisor not yet implemented

This commit is contained in:
2021-04-03 22:48:53 +02:00
parent f47631b2cf
commit e8606bcea8
6 changed files with 125 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
#ifndef _TEMP_ADC_H_
#define _TEMP_ADC_H_
#include <stdint.h>
void temperature_adc_init(void);
int32_t temperature_adc_get_temp(void);
#endif /* _TEMP_ADC_H_ */