You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
#ifndef CONTROL_MESSAGE_H
|
|
#define CONTROL_MESSAGE_H
|
|
|
|
// 001 is change channel
|
|
// 002 is stop writting to mainw
|
|
// 003 is resume updating mainw and flush buffer
|
|
|
|
#define CHANGE_CHANNEL 001
|
|
#define STOP_UPDATES 002
|
|
#define RESUME_UPDATES 003
|
|
#define REREAD_CONFIG 004
|
|
#define SET_LAG 005
|
|
#define RESET_NOTIF 006
|
|
|
|
#endif
|