Forgotten include gards
authorNathael Pajani <nathael.pajani@ed3l.fr>
Sun, 29 Dec 2013 00:34:14 +0000 (01:34 +0100)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:04 +0000 (17:03 +0100)
include/drivers/adc.h
include/drivers/ssp.h
include/drivers/temp.h
include/drivers/timers.h

index b5e29f9..896432c 100644 (file)
@@ -18,6 +18,8 @@
  *
  *************************************************************************** */
 
+#ifndef DRIVERS_ADC_H
+#define DRIVERS_ADC_H
 
 
 /***************************************************************************** */
@@ -63,3 +65,5 @@ void adc_clk_update(void);
 void adc_on(void);
 void adc_off(void);
 
+#endif /* DRIVERS_ADC_H */
+
index a46463a..d3f15ae 100644 (file)
@@ -18,6 +18,8 @@
  *
  *************************************************************************** */
 
+#ifndef DRIVERS_SSP_H
+#define DRIVERS_SSP_H
 
 
 /***************************************************************************** */
@@ -93,3 +95,7 @@ int ssp_slave_on(uint8_t frame_type, uint8_t data_width, uint8_t out_en, uint32_
 
 /* Turn off the SSP block */
 void ssp_off(void);
+
+
+#endif /* DRIVERS_SSP_H */
+
index 2dcde7c..10fd4ea 100644 (file)
@@ -20,6 +20,9 @@
  *
  *************************************************************************** */
 
+#ifndef DRIVERS_TEMP_H
+#define DRIVERS_TEMP_H
+
 #include <stdint.h>
 
 
@@ -96,3 +99,5 @@ int sensor_config(uint32_t resolution);
 int sensor_start_conversion(void);
 
 
+#endif /* DRIVERS_TEMP_H */
+
index f562fb8..a3dff99 100644 (file)
@@ -18,6 +18,8 @@
  *
  *************************************************************************** */
 
+#ifndef DRIVERS_TIMERS_H
+#define DRIVERS_TIMERS_H
 
 #include <stdint.h>
 #include "core/lpc_regs_12xx.h"
@@ -166,3 +168,6 @@ void timer_on(uint32_t timer_num, uint32_t clkrate);
 
 /* Removes the main clock from the selected timer block */
 void timer_off(uint32_t timer_num);
+
+#endif /* DRIVERS_TIMERS_H */
+