mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix defines in doc
This commit is contained in:
parent
b63ec47238
commit
13360ab126
@ -268,8 +268,8 @@ typedef TickType_t EventBits_t;
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define BIT_0 ( 1 << 0 )
|
* #define BIT_0 ( 1 << 0 )
|
||||||
* \#define BIT_4 ( 1 << 4 )
|
* #define BIT_4 ( 1 << 4 )
|
||||||
*
|
*
|
||||||
* void aFunction( EventGroupHandle_t xEventGroup )
|
* void aFunction( EventGroupHandle_t xEventGroup )
|
||||||
* {
|
* {
|
||||||
@ -336,8 +336,8 @@ EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define BIT_0 ( 1 << 0 )
|
* #define BIT_0 ( 1 << 0 )
|
||||||
* \#define BIT_4 ( 1 << 4 )
|
* #define BIT_4 ( 1 << 4 )
|
||||||
*
|
*
|
||||||
* void aFunction( EventGroupHandle_t xEventGroup )
|
* void aFunction( EventGroupHandle_t xEventGroup )
|
||||||
* {
|
* {
|
||||||
@ -409,8 +409,8 @@ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define BIT_0 ( 1 << 0 )
|
* #define BIT_0 ( 1 << 0 )
|
||||||
* \#define BIT_4 ( 1 << 4 )
|
* #define BIT_4 ( 1 << 4 )
|
||||||
*
|
*
|
||||||
* // An event group which it is assumed has already been created by a call to
|
* // An event group which it is assumed has already been created by a call to
|
||||||
* // xEventGroupCreate().
|
* // xEventGroupCreate().
|
||||||
@ -475,8 +475,8 @@ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup,
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define BIT_0 ( 1 << 0 )
|
* #define BIT_0 ( 1 << 0 )
|
||||||
* \#define BIT_4 ( 1 << 4 )
|
* #define BIT_4 ( 1 << 4 )
|
||||||
*
|
*
|
||||||
* void aFunction( EventGroupHandle_t xEventGroup )
|
* void aFunction( EventGroupHandle_t xEventGroup )
|
||||||
* {
|
* {
|
||||||
@ -561,8 +561,8 @@ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define BIT_0 ( 1 << 0 )
|
* #define BIT_0 ( 1 << 0 )
|
||||||
* \#define BIT_4 ( 1 << 4 )
|
* #define BIT_4 ( 1 << 4 )
|
||||||
*
|
*
|
||||||
* // An event group which it is assumed has already been created by a call to
|
* // An event group which it is assumed has already been created by a call to
|
||||||
* // xEventGroupCreate().
|
* // xEventGroupCreate().
|
||||||
@ -656,11 +656,11 @@ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
|
|||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* // Bits used by the three tasks.
|
* // Bits used by the three tasks.
|
||||||
* \#define TASK_0_BIT ( 1 << 0 )
|
* #define TASK_0_BIT ( 1 << 0 )
|
||||||
* \#define TASK_1_BIT ( 1 << 1 )
|
* #define TASK_1_BIT ( 1 << 1 )
|
||||||
* \#define TASK_2_BIT ( 1 << 2 )
|
* #define TASK_2_BIT ( 1 << 2 )
|
||||||
*
|
*
|
||||||
* \#define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
|
* #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
|
||||||
*
|
*
|
||||||
* // Use an event group to synchronise three tasks. It is assumed this event
|
* // Use an event group to synchronise three tasks. It is assumed this event
|
||||||
* // group has already been created elsewhere.
|
* // group has already been created elsewhere.
|
||||||
|
@ -185,7 +185,7 @@ typedef void * MessageBufferHandle_t;
|
|||||||
*
|
*
|
||||||
* // Used to dimension the array used to hold the messages. The available space
|
* // Used to dimension the array used to hold the messages. The available space
|
||||||
* // will actually be one less than this, so 999.
|
* // will actually be one less than this, so 999.
|
||||||
* \#define STORAGE_SIZE_BYTES 1000
|
* #define STORAGE_SIZE_BYTES 1000
|
||||||
*
|
*
|
||||||
* // Defines the memory that will actually hold the messages within the message
|
* // Defines the memory that will actually hold the messages within the message
|
||||||
* // buffer.
|
* // buffer.
|
||||||
|
@ -187,8 +187,8 @@ typedef struct QueueDefinition * QueueSetMemberHandle_t;
|
|||||||
* char ucData[ 20 ];
|
* char ucData[ 20 ];
|
||||||
* };
|
* };
|
||||||
*
|
*
|
||||||
* \#define QUEUE_LENGTH 10
|
* #define QUEUE_LENGTH 10
|
||||||
* \#define ITEM_SIZE sizeof( uint32_t )
|
* #define ITEM_SIZE sizeof( uint32_t )
|
||||||
*
|
*
|
||||||
* // xQueueBuffer will hold the queue structure.
|
* // xQueueBuffer will hold the queue structure.
|
||||||
* StaticQueue_t xQueueBuffer;
|
* StaticQueue_t xQueueBuffer;
|
||||||
|
@ -607,8 +607,8 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
|||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* @code{c}
|
* @code{c}
|
||||||
* \#define LONG_TIME 0xffff
|
* #define LONG_TIME 0xffff
|
||||||
* \#define TICKS_TO_WAIT 10
|
* #define TICKS_TO_WAIT 10
|
||||||
* SemaphoreHandle_t xSemaphore = NULL;
|
* SemaphoreHandle_t xSemaphore = NULL;
|
||||||
*
|
*
|
||||||
* // Repetitive task.
|
* // Repetitive task.
|
||||||
|
@ -193,7 +193,7 @@ typedef struct StreamBufferDef_t * StreamBufferHandle_t;
|
|||||||
*
|
*
|
||||||
* // Used to dimension the array used to hold the streams. The available space
|
* // Used to dimension the array used to hold the streams. The available space
|
||||||
* // will actually be one less than this, so 999.
|
* // will actually be one less than this, so 999.
|
||||||
* \#define STORAGE_SIZE_BYTES 1000
|
* #define STORAGE_SIZE_BYTES 1000
|
||||||
*
|
*
|
||||||
* // Defines the memory that will actually hold the streams within the stream
|
* // Defines the memory that will actually hold the streams within the stream
|
||||||
* // buffer.
|
* // buffer.
|
||||||
|
@ -521,7 +521,7 @@ typedef enum
|
|||||||
* // Dimensions the buffer that the task being created will use as its stack.
|
* // Dimensions the buffer that the task being created will use as its stack.
|
||||||
* // NOTE: This is the number of bytes the stack will hold, not the number of
|
* // NOTE: This is the number of bytes the stack will hold, not the number of
|
||||||
* // words as found in vanilla FreeRTOS.
|
* // words as found in vanilla FreeRTOS.
|
||||||
* \#define STACK_SIZE 200
|
* #define STACK_SIZE 200
|
||||||
*
|
*
|
||||||
* // Structure that will hold the TCB of the task being created.
|
* // Structure that will hold the TCB of the task being created.
|
||||||
* StaticTask_t xTaskBuffer;
|
* StaticTask_t xTaskBuffer;
|
||||||
|
Loading…
Reference in New Issue
Block a user