summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/button.h2
-rw-r--r--firmware/export/lcd-remote.h3
-rw-r--r--firmware/rolo.c1
3 files changed, 4 insertions, 2 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h
index f50f3dd9a4..95da7adc42 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -22,7 +22,9 @@
22#include <stdbool.h> 22#include <stdbool.h>
23#include <inttypes.h> 23#include <inttypes.h>
24#include "config.h" 24#include "config.h"
25#ifndef __PCTOOL__
25#include "button-target.h" 26#include "button-target.h"
27#endif
26 28
27extern struct event_queue button_queue; 29extern struct event_queue button_queue;
28 30
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index b046c0736d..55d3f6fb38 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -23,12 +23,11 @@
23#include <stdbool.h> 23#include <stdbool.h>
24#include "cpu.h" 24#include "cpu.h"
25#include "config.h" 25#include "config.h"
26#include "adc.h"
27#include "lcd.h" 26#include "lcd.h"
28 27
29#ifdef HAVE_REMOTE_LCD 28#ifdef HAVE_REMOTE_LCD
30 29
31#if defined(TARGET_TREE) 30#if defined(TARGET_TREE) && !defined(__PCTOOL__)
32#include "lcd-remote-target.h" 31#include "lcd-remote-target.h"
33#endif 32#endif
34 33
diff --git a/firmware/rolo.c b/firmware/rolo.c
index 30eba91316..bfc0c13ff7 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -28,6 +28,7 @@
28#include "audio.h" 28#include "audio.h"
29#include "system.h" 29#include "system.h"
30#include "i2c.h" 30#include "i2c.h"
31#include "adc.h"
31#include "string.h" 32#include "string.h"
32#include "buffer.h" 33#include "buffer.h"
33 34