Add include guards
authorNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 9 Sep 2015 19:11:04 +0000 (21:11 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:04 +0000 (17:03 +0100)
include/extdrv/epaper.h

index 00aa614..fc4724a 100644 (file)
  * artists on the GPIO Demo module.
  */
 
+
+#ifndef EXTDRV_EPAPER_H
+#define EXTDRV_EPAPER_H
+
 #include <stdint.h>
 #include "core/pio.h"
 #include "drivers/timers.h"
@@ -119,3 +123,5 @@ void epaper_send_frame(uint8_t* image, uint8_t stage);
  */
 void epaper_send_partial_frame(uint8_t* image, uint8_t start_line, uint8_t nb_lines, uint8_t stage);
 
+#endif /* EXTDRV_EPAPER_H */
+