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 logic {};
27namespace physical {};
29namespace platform {};
31namespace utils {};
32
33// clang-format on
34
35} // namespace lampda
36
37#endif
Program scope.
Definition: control_fixed_modes.hpp:12
void main_setup()
Setup of the program, call once on systel start.
Definition: global.cpp:79
void main_loop(const uint32_t addedDelay)
Run the main program loop.
Definition: global.cpp:225