summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'main.h')
-rw-r--r--main.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.h b/main.h
index 7d87f99..38fe4ff 100644
--- a/main.h
+++ b/main.h
@@ -1,5 +1,6 @@
1#pragma once 1#pragma once
2#include <stdint.h> 2#include <stdint.h>
3#include "config.h"
3 4
4#ifdef ARDUINO 5#ifdef ARDUINO
5#define NO_DISPLAY 6#define NO_DISPLAY
@@ -11,4 +12,11 @@ extern int g_width;
11extern int g_height; 12extern int g_height;
12extern int g_harfe_connected; 13extern int g_harfe_connected;
13 14
15/* 0 unconfigured
16 1 import from Harfe
17 2 import from File
18 3 modified locally
19*/
20extern ConfigSource g_config_source;
21
14extern int g_harfe_fd; 22extern int g_harfe_fd;