Major wip refactor
Allow running without gui Remove serialPortMultiplexer broadcast use Add TcpServer and TcpClient Introduce the concept of an item source
This commit is contained in:
parent
cbeb8d49a7
commit
6d742e60db
38 changed files with 928 additions and 825 deletions
13
src/programmode.h
Normal file
13
src/programmode.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef PROGRAMMODE_H
|
||||
#define PROGRAMMODE_H
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PROGRAM_MODE_PRIMARY = 0,
|
||||
PROGRAM_MODE_HEADLESS_PRIMARY,
|
||||
PROGRAM_MODE_UI_ONLY
|
||||
} program_mode_t;
|
||||
|
||||
extern program_mode_t programMode;
|
||||
|
||||
#endif // PROGRAMMODE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue