CLEON  Version 1
Cloud-Offloaded GPS Receiver
hal_adc.h
Go to the documentation of this file.
1 
7 #ifndef __HAL_ADC_H__
8 #define __HAL_ADC_H__
9 
10 #define HAL_ADC_StartADC() ADC12CTL0 |= ADC12SC
11 #define HAL_ADC_StopADC() ADC12CTL0 &= ~ADC12SC
12 
13 void HAL_ADC_Init(void);
14 
15 #endif