-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathcontrol_system.cpp
More file actions
38 lines (23 loc) · 1.11 KB
/
control_system.cpp
File metadata and controls
38 lines (23 loc) · 1.11 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
//=====[Libraries]=============================================================
#include "arm_book_lib.h"
#include "control_system.h"
#include "control_panel.h"
#include "serial_communication.h"
//pendiente de agregar mas modulos con los cuales interactua
//=====[Declaration of private defines]========================================
//=====[Declaration of private data types]=====================================
//=====[Declaration and initialization of public global objects]===============
//=====[Declaration of external public global variables]=======================
//=====[Declaration and initialization of public global variables]=============
//=====[Declaration and initialization of private global variables]============
//=====[Declarations (prototypes) of private functions]========================
//=====[Implementations of public functions]===================================
void controlSystemInit(){
controlPanelInit();
}
void controlSystemUpdate()
{
controlPanelUpdate();
delay(SYSTEM_TIME_INCREMENT_MS);
}
//=====[Implementations of private functions]==================================