2019-07-20 10:33发布
zuozhongkai 发表于 2017-12-14 11:04 这两个哪里有重复定义?那个被重复定义了?还有,有没有错误不要看左边有没有红 {MOD}的×,直接编译,看编译结 ...
最多设置5个标签!
#include "stdint.h"
/* Type definitions. */
#define portCHAR char
#define portFLOAT float
#define portDOUBLE double
#define portLONG long
#define portSHORT short
#define portSTACK_TYPE uint32_t
#define portBASE_TYPE long
typedef portSTACK_TYPE StackType_t;
typedef long BaseType_t;
typedef unsigned long UBaseType_t;
#if( configUSE_16_BIT_TICKS == 1 )
typedef uint16_t TickType_t;
#define portMAX_DELAY ( TickType_t ) 0xffff
#else
typedef uint32_t TickType_t;
#define portMAX_DELAY ( TickType_t ) 0xffffffffUL
加上第一条#include就好了
一周热门 更多>