From: Nathael Pajani Date: Wed, 9 Sep 2015 19:11:04 +0000 (+0200) Subject: Add include guards X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=1c5f5262bbe0a3e9d438475d52b1a389039e3a49;p=soft%2Flpc122x%2Fcore Add include guards --- diff --git a/include/extdrv/epaper.h b/include/extdrv/epaper.h index 00aa614..fc4724a 100644 --- a/include/extdrv/epaper.h +++ b/include/extdrv/epaper.h @@ -26,6 +26,10 @@ * artists on the GPIO Demo module. */ + +#ifndef EXTDRV_EPAPER_H +#define EXTDRV_EPAPER_H + #include #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 */ +