You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
299 B
20 lines
299 B
|
3 weeks ago
|
/*
|
||
|
|
* bsp_adc.h
|
||
|
|
*
|
||
|
|
* Created on: Feb 21, 2025
|
||
|
|
* Author: akeguo
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef INC_BSP_BSP_TEMPATURE_H_
|
||
|
|
#define INC_BSP_BSP_TEMPATURE_H_
|
||
|
|
|
||
|
|
|
||
|
|
#include "main.h"
|
||
|
|
#include "DLTuc.h"
|
||
|
|
|
||
|
|
int32_t read_temperature();
|
||
|
|
void ADC_Intialize();
|
||
|
|
|
||
|
|
extern int32_t * tempature;
|
||
|
|
#endif /* INC_BSP_BSP_TEMPATURE_H_ */
|