| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef __DEFINE_H__
- #define __DEFINE_H__
- #include <stdlib.h>
- #include <string.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include "CONFIG.h"
- #include "HAL.h"
- #define LOG_OUTPUT_TIME 3000
- #define Timecount 256
- #define REBYTE_LEN 512
- #define SEND_LEN 128
- #define HIGH 1
- #define LOW 0
- #define SOFTWARE_VERSION 0x10
- #define HARDWARE_VERSION 0x14
- #define AES_ENABLE 0
- /* OTA upgrade logo */
- #define IMAGE_OTA_FLAG 0x03
- /* Store on the DataFlash address, the position of Bluetooth cannot be occupied */
- #define OTA_DATAFLASH_ADDR 0x08077000
- #define IMAGE_FLAG_1 0x1A
- #define IMAGE_FLAG_2 0x2A
- #define IMAGE_FLAG_3 0x3A
- #define CONFIG_DATAFLASH_ADDR 0x08077100
- #define LEFT_IDX 0
- #define RIGHT_IDX 1
- #define CAN_OFFLINE_TIMEOUT_DEFAULT 5000
- #endif /* USER_DEFINE_H_ */
|