-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathCore.cpp
More file actions
56 lines (54 loc) · 1.24 KB
/
Core.cpp
File metadata and controls
56 lines (54 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "inc/Globals.hpp"
#include "../Configuration.hpp"
#include "Utility.hpp"
#include "Mount.hpp"
#include "a_inits.hpp"
#include "b_setup.hpp"
#include "c65_startup.hpp"
#include "c70_menuRA.hpp"
#include "c71_menuDEC.hpp"
#include "c722_menuPOI.hpp"
#include "c725_menuHOME.hpp"
#include "c72_menuHA.hpp"
#include "c72_menuHA_GPS.hpp"
#include "c75_menuCTRL.hpp"
#include "c76_menuCAL.hpp"
#include "c78_menuINFO.hpp"
#include "c_buttons.hpp"
#include "f_serial.hpp"
#ifdef NEW_STEPPER_LIB
#ifdef ARDUINO_ARCH_AVR
ISR(TIMER1_OVF_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_1>::handle_overflow();
}
ISR(TIMER1_COMPA_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_1>::handle_compare_match();
}
ISR(TIMER3_OVF_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_3>::handle_overflow();
}
ISR(TIMER3_COMPA_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_3>::handle_compare_match();
}
ISR(TIMER4_OVF_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_4>::handle_overflow();
}
ISR(TIMER4_COMPA_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_4>::handle_compare_match();
}
ISR(TIMER5_OVF_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_5>::handle_overflow();
}
ISR(TIMER5_COMPA_vect)
{
IntervalInterrupt_AVR<Timer::TIMER_5>::handle_compare_match();
}
#endif
#endif