Skip to content

Commit 834eb1a

Browse files
Defined missing includes. Before the references were just satisfied implicit by the include order in OpenAstroTracker.ino
1 parent 11b5191 commit 834eb1a

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

Software/Arduino code/OpenAstroTracker/InterruptCallback.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#pragma once
2+
23
#include "Globals.hpp"
34

45
//////////////////////////////////////

Software/Arduino code/OpenAstroTracker/b_setup.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
#pragma once
44

5+
#include "OpenAstroTracker.hpp"
6+
#include "a_inits.hpp"
7+
#include "LcdMenu.hpp"
8+
#include "Utility.hpp"
9+
510
LcdMenu lcdMenu(16, 2, MAXMENUITEMS);
611
LcdButtons lcdButtons(0);
712

Software/Arduino code/OpenAstroTracker/c725_menuHOME.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#pragma once
22

3+
#include "b_setup.hpp"
4+
35
#if HEADLESS_CLIENT == 0
46
byte subGoIndex = 0;
57

Software/Arduino code/OpenAstroTracker/c_buttons.hpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
#pragma once
22

3+
#include <Arduino.h>
4+
#include "b_setup.hpp"
5+
#include "c65_startup.hpp"
6+
#include "c70_menuRA.hpp"
7+
#include "c71_menuDEC.hpp"
8+
#include "c722_menuPOI.hpp"
9+
#include "c72_menuHA.hpp"
10+
#include "c75_menuCTRL.hpp"
11+
#include "c76_menuCAL.hpp"
12+
#include "c78_menuINFO.hpp"
13+
314
#if SUPPORT_SERIAL_CONTROL == 1
415
#include "f_serial.hpp"
516
#endif

Software/Arduino code/OpenAstroTracker/f_serial.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#pragma once
22

3+
#include "b_setup.hpp"
4+
35
#if SUPPORT_SERIAL_CONTROL == 1
46
#include "MeadeCommandProcessor.hpp"
57

0 commit comments

Comments
 (0)