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.
26 lines
528 B
26 lines
528 B
7 years ago
|
//
|
||
|
// Created by MightyPork on 2017/10/15.
|
||
|
//
|
||
|
|
||
|
#ifndef TF_CONFIG_H
|
||
|
#define TF_CONFIG_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define TF_ID_BYTES 1
|
||
|
#define TF_LEN_BYTES 2
|
||
|
#define TF_TYPE_BYTES 1
|
||
|
#define TF_CKSUM_TYPE TF_CKSUM_CRC16
|
||
|
#define TF_USE_SOF_BYTE 1
|
||
|
#define TF_SOF_BYTE 0x01
|
||
|
typedef uint16_t TF_TICKS;
|
||
|
typedef uint8_t TF_COUNT;
|
||
|
#define TF_MAX_PAYLOAD_RX 1024
|
||
7 years ago
|
#define TF_SENDBUF_LEN 1024
|
||
7 years ago
|
#define TF_MAX_ID_LST 10
|
||
|
#define TF_MAX_TYPE_LST 10
|
||
|
#define TF_MAX_GEN_LST 5
|
||
|
#define TF_PARSER_TIMEOUT_TICKS 10
|
||
|
|
||
|
#endif //TF_CONFIG_H
|