32位下:
AJ_SlippedBuffer volatile* bufferRxQueue;
typedef struct __AJ_SlippedBuffer {
uint8_t* buffer;
uint16_t allocatedLen;
uint16_t actualLen;
struct __AJ_SlippedBuffer volatile* next;
} AJ_SlippedBuffer;
对于struct __AJ_SlippedBuffer volatile* next;t是不是相当于只包含uint8_t* buffer;和uint16_t allocatedLen两个变量?
|