*
*************************************************************************** */
+#ifndef DRIVERS_ADC_H
+#define DRIVERS_ADC_H
/***************************************************************************** */
void adc_on(void);
void adc_off(void);
+#endif /* DRIVERS_ADC_H */
+
*
*************************************************************************** */
+#ifndef DRIVERS_SSP_H
+#define DRIVERS_SSP_H
/***************************************************************************** */
/* Turn off the SSP block */
void ssp_off(void);
+
+
+#endif /* DRIVERS_SSP_H */
+
*
*************************************************************************** */
+#ifndef DRIVERS_TEMP_H
+#define DRIVERS_TEMP_H
+
#include <stdint.h>
int sensor_start_conversion(void);
+#endif /* DRIVERS_TEMP_H */
+
*
*************************************************************************** */
+#ifndef DRIVERS_TIMERS_H
+#define DRIVERS_TIMERS_H
#include <stdint.h>
#include "core/lpc_regs_12xx.h"
/* Removes the main clock from the selected timer block */
void timer_off(uint32_t timer_num);
+
+#endif /* DRIVERS_TIMERS_H */
+