initial commit
This commit is contained in:
39
include/README
Normal file
39
include/README
Normal file
@ -0,0 +1,39 @@
|
||||
|
||||
This directory is intended for project header files.
|
||||
|
||||
A header file is a file containing C declarations and macro definitions
|
||||
to be shared between several project source files. You request the use of a
|
||||
header file in your project source file (C, C++, etc) located in `src` folder
|
||||
by including it, with the C preprocessing directive `#include'.
|
||||
|
||||
```src/main.c
|
||||
|
||||
#include "header.h"
|
||||
|
||||
int main (void)
|
||||
{
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
Including a header file produces the same results as copying the header file
|
||||
into each source file that needs it. Such copying would be time-consuming
|
||||
and error-prone. With a header file, the related declarations appear
|
||||
in only one place. If they need to be changed, they can be changed in one
|
||||
place, and programs that include the header file will automatically use the
|
||||
new version when next recompiled. The header file eliminates the labor of
|
||||
finding and changing all the copies as well as the risk that a failure to
|
||||
find one copy will result in inconsistencies within a program.
|
||||
|
||||
In C, the usual convention is to give header files names that end with `.h'.
|
||||
It is most portable to use only letters, digits, dashes, and underscores in
|
||||
header file names, and at most one dot.
|
||||
|
||||
Read more about using header files in official GCC documentation:
|
||||
|
||||
* Include Syntax
|
||||
* Include Operation
|
||||
* Once-Only Headers
|
||||
* Computed Includes
|
||||
|
||||
https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html
|
52
include/serial_command.h
Normal file
52
include/serial_command.h
Normal file
@ -0,0 +1,52 @@
|
||||
#ifndef SERIAL_COMMAND_H
|
||||
#define SERIAL_COMMAND_H
|
||||
|
||||
// Command send to MCU
|
||||
enum CTRL_CODE_ {
|
||||
// System mode
|
||||
CTRL_CODE_SYSMODE_Disable = 0x01,
|
||||
CTRL_CODE_SYSMODE_Telemetry = 0x02,
|
||||
CTRL_CODE_SYSMODE_Security = 0x03,
|
||||
|
||||
// Tmperature telemetry
|
||||
CTRL_CODE_TEMP_Disable = 0x10,
|
||||
CTRL_CODE_TEMP_Enable = 0x11,
|
||||
|
||||
// Body alarming
|
||||
CTRL_CODE_BODY_Disable = 0x21,
|
||||
CTRL_CODE_BODY_Buzzer = 0x22,
|
||||
CTRL_CODE_BODY_Light = 0x23,
|
||||
|
||||
// Gas telemetry
|
||||
CTRL_CODE_GAS_Disable = 0x31,
|
||||
CTRL_CODE_GAS_State = 0x32,
|
||||
CTRL_CODE_GAS_Data = 0x33,
|
||||
|
||||
// Collection cycle
|
||||
CTRL_CODE_CYCLE_500ms = 0x41,
|
||||
CTRL_CODE_CYCLE_1s = 0x42,
|
||||
CTRL_CODE_CYCLE_2s = 0x43,
|
||||
CTRL_CODE_CYCLE_5s = 0x44
|
||||
};
|
||||
|
||||
// Command code from MCU
|
||||
enum MCU_CMD_ {
|
||||
MCU_CMD_TEMP = 0x01,
|
||||
MCU_CMD_BODY = 0x02,
|
||||
MCU_CMD_GAS_STATE = 0x03,
|
||||
MCU_CMD_GAS_DATA = 0x04,
|
||||
};
|
||||
|
||||
// Body sensor status code
|
||||
enum COMMAND_BODY {
|
||||
MCU_CMD_BODY_YES = 0x01,
|
||||
MCU_CMD_BODY_NO = 0x02,
|
||||
};
|
||||
|
||||
// Gas sensor status code
|
||||
enum {
|
||||
MCU_CMD_GAS_STATE_NORMAL = 0x01,
|
||||
MCU_CMD_GAS_STATE_ALARMING = 0x02,
|
||||
};
|
||||
|
||||
#endif // SERIAL_COMMAND_H
|
Reference in New Issue
Block a user