Lamp-Da 0.1
A compact lantern project
Loading...
Searching...
No Matches
global.h
Go to the documentation of this file.
1
5#ifndef GLOBAL_H
6#define GLOBAL_H
7
8#include <cstdint>
9
11namespace lampda {
12
15extern void main_loop(const uint32_t addedDelay = 0);
16
18extern void main_setup();
19
20// Document all main namespace of the project
21
22// clang-format off
23
25namespace hal {};
27namespace bsp {};
29namespace component {};
31namespace logic {};
32
34namespace driver {};
35
37namespace common {};
38
40namespace utils {};
41
42// clang-format on
43
44} // namespace lampda
45
46#endif
Program scope.
Definition: control_fixed_modes.hpp:12
void main_setup()
Setup of the program, call once on systel start.
Definition: global.cpp:83
void main_loop(const uint32_t addedDelay)
Run the main program loop.
Definition: global.cpp:230