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 3bbf89a92c..1034fcdba9 100644
--- a/firmware/drivers/lcd.h
+++ b/firmware/drivers/lcd.h
@@ -20,8 +20,8 @@
20#ifndef __LCD_H__ 20#ifndef __LCD_H__
21#define __LCD_H__ 21#define __LCD_H__
22 22
23#include <stdbool.h>
23#include "sh7034.h" 24#include "sh7034.h"
24#include "types.h"
25#include "config.h" 25#include "config.h"
26 26
27/* common functions */ 27/* common functions */
diff --git a/firmware/drivers/led.c b/firmware/drivers/led.c
index efc7123ffd..80e8469638 100644
--- a/firmware/drivers/led.c
+++ b/firmware/drivers/led.c
@@ -17,7 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#include "types.h" 20#include <stdbool.h>
21#include "sh7034.h" 21#include "sh7034.h"
22#include "led.h" 22#include "led.h"
23 23
diff --git a/firmware/drivers/led.h b/firmware/drivers/led.h
index aeaa1cc476..9b2552f738 100644
--- a/firmware/drivers/led.h
+++ b/firmware/drivers/led.h
@@ -20,7 +20,7 @@
20#ifndef __LED_H__ 20#ifndef __LED_H__
21#define __LED_H__ 21#define __LED_H__
22 22
23#include "types.h" 23#include <stdbool.h>
24 24
25extern void led( bool on ); 25extern void led( bool on );
26 26