add compatibility under LINUX
This commit is contained in:
parent
2f41e67de0
commit
94499150bc
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"files.associations": {
|
||||
"memory.h": "c",
|
||||
"stdint-gcc.h": "c",
|
||||
"stdint.h": "c",
|
||||
"led_task.h": "c",
|
||||
"stdinf.h": "c",
|
||||
"usart.h": "c",
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include "ins_task.h"
|
||||
#include "master_process.h"
|
||||
#include "stdint-gcc.h"
|
||||
#include "stdint.h"
|
||||
|
||||
/* 开发板类型定义,烧录时注意不要弄错对应功能;修改定义后需要重新编译,只能存在一个定义! */
|
||||
#define ONE_BOARD // 单板控制整车
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef BSP_BUZZER_H
|
||||
#define BSP_BUZZER_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void BuzzerInit();
|
||||
extern void BuzzerOn(uint16_t psc, uint16_t pwm, uint8_t level);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef BSP_CAN_H
|
||||
#define BSP_CAN_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
#include "can.h"
|
||||
|
||||
#define MX_REGISTER_DEVICE_CNT 12 // maximum number of device can be registered to CAN service
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef BSP_LED_H
|
||||
#define BSP_LED_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void LEDInit();
|
||||
extern void FlowRGBShow(uint32_t aRGB);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef BSP_RC_H
|
||||
#define BSP_RC_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
#include "main.h"
|
||||
|
||||
#define DEVICE_USART_CNT 3 // C板至多分配3个串口
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef MONITOR_H
|
||||
#define MONITOR_H
|
||||
|
||||
#include "stdint-gcc.h"
|
||||
#include "stdint.h"
|
||||
|
||||
#define DAEMON_MX_CNT 64
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include "led_task.h"
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "bsp_led.h"
|
||||
#include "main.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define __SEASKY_PROTOCOL_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define PROTOCOL_CMD_ID 0XA5
|
||||
#define OFFSET_BYTE 8 // 出数据段外,其他部分所占字节数
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef PUBSUB_H
|
||||
#define PUBSUB_H
|
||||
|
||||
#include "stdint-gcc.h"
|
||||
#include "stdint.h"
|
||||
|
||||
|
||||
#define MAX_EVENT_NAME_LEN 32 //最大的事件名长度,每个事件都有字符串来命名
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef HT04_H
|
||||
#define HT04_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
#include "bsp_can.h"
|
||||
#include "controller.h"
|
||||
#include "motor_def.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef LK9025_H
|
||||
#define LK9025_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include "stdint.h"
|
||||
#include "bsp_can.h"
|
||||
#include "controller.h"
|
||||
#include "motor_def.h"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#define MOTOR_DEF_H
|
||||
|
||||
#include "controller.h"
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define LIMIT_MIN_MAX(x, min, max) (x) = (((x) <= (min)) ? (min) : (((x) >= (max)) ? (max) : (x)))
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __CRC_H_
|
||||
#define __CRC_H_
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef REMOTE_CONTROL_H
|
||||
#define REMOTE_CONTROL_H
|
||||
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
#include "main.h"
|
||||
#include "usart.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
#ifndef VOFA_H
|
||||
#define VOFA_H
|
||||
#include <stdint-gcc.h>
|
||||
#include <stdint.h>
|
||||
#include "bsp_usart.h"
|
||||
#include "usart.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue