summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd.h2
-rw-r--r--firmware/drivers/led.c2
-rw-r--r--firmware/drivers/led.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd.h b/firmware/drivers/lcd.h
index 3bbf89a..1034fcd 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -20,8 +20,8 @@
#ifndef __LCD_H__
#define __LCD_H__
+#include <stdbool.h>
#include "sh7034.h"
-#include "types.h"
#include "config.h"
/* common functions */
diff --git a/firmware/drivers/led.c b/firmware/drivers/led.c
index efc7123..80e8469 100644
--- a/firmware/drivers/led.c
+++ b/firmware/drivers/led.c
@@ -17,7 +17,7 @@
*
****************************************************************************/
-#include "types.h"
+#include <stdbool.h>
#include "sh7034.h"
#include "led.h"
diff --git a/firmware/drivers/led.h b/firmware/drivers/led.h
index aeaa1cc..9b2552f 100644
--- a/firmware/drivers/led.h
+++ b/firmware/drivers/led.h
@@ -20,7 +20,7 @@
#ifndef __LED_H__
#define __LED_H__
-#include "types.h"
+#include <stdbool.h>
extern void led( bool on );