forked from jsfrc/einsy-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.h
74 lines (55 loc) · 1.24 KB
/
custom.h
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#pragma once
// select one custom variant below
// #define CUSTOM_AUTONOMOUS
// #define CUSTOM_CW
// #define CUSTOM_CW_LETNANY
// #define CUSTOM_RESIN_MIXER
// #define CUSTOM_HEATBED
// #define CUSTOM_MFRC522_TEST
// #define CUSTOM_GESTURES_TEST
// #define CUSTOM_TILT_TEST
#define CUSTOM_TWIN_TOWER_TEST
// #define CUSTOM_FAN_CONTROL
// #define CUSTOM_CW2
#ifdef CUSTOM_AUTONOMOUS
#include "src/custom/autonomous.h"
#endif
#ifdef CUSTOM_CW
#include "src/custom/cw.h"
#endif
#ifdef CUSTOM_CW_LETNANY
#include "src/custom/cw_letnany.h"
#endif
#ifdef CUSTOM_RESIN_MIXER
#include "src/custom/resin_mixer.h"
#endif
#ifdef CUSTOM_HEATBED
#include "src/custom/heatbed.h"
#endif
#ifdef CUSTOM_MFRC522_TEST
#include "src/custom/mfrc522_test.h"
#endif
#ifdef CUSTOM_GESTURES_TEST
#include "src/custom/gestures_test.h"
#endif
#ifdef CUSTOM_TILT_TEST
#include "src/custom/tilt_test.h"
#endif
#ifdef CUSTOM_TWIN_TOWER_TEST
#include "src/custom/twin_tower_test.h"
#endif
#ifdef CUSTOM_FAN_CONTROL
#include "src/custom/fan_control.h"
#endif
#ifdef CUSTOM_CW2
#include "src/custom/cw2.h"
#endif
#ifdef CUSTOM_SETUP
void setupCustom();
#endif
#ifdef CUSTOM_LOOP
void loopCustom();
#endif
#ifdef CUSTOM_TIMER0_ISR
void timer0Custom();
#endif