mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-30 10:21:57 -04:00
fixed spelling error in HTTP
This commit is contained in:
parent
bec6d8016f
commit
8b04c239f1
|
@ -2,7 +2,7 @@
|
||||||
* This file provides an example FreeRTOSConfig.h header file, inclusive of an
|
* This file provides an example FreeRTOSConfig.h header file, inclusive of an
|
||||||
* abbreviated explanation of each configuration item. Online and reference
|
* abbreviated explanation of each configuration item. Online and reference
|
||||||
* documentation provides more information.
|
* documentation provides more information.
|
||||||
* htps://www.freertos.org/a00110.html
|
* https://www.freertos.org/a00110.html
|
||||||
*
|
*
|
||||||
* Constant values enclosed in square brackets ('[' and ']') must be completed
|
* Constant values enclosed in square brackets ('[' and ']') must be completed
|
||||||
* before this file will build.
|
* before this file will build.
|
||||||
|
@ -11,8 +11,6 @@
|
||||||
* generic file, if one is available.
|
* generic file, if one is available.
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __FREERTOS_CONFIG_H__
|
#ifndef __FREERTOS_CONFIG_H__
|
||||||
#define __FREERTOS_CONFIG_H__
|
#define __FREERTOS_CONFIG_H__
|
||||||
|
|
||||||
|
@ -43,8 +41,6 @@
|
||||||
#define configSYSTICK_CLOCK_HZ [Platform specific]
|
#define configSYSTICK_CLOCK_HZ [Platform specific]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Scheduling behaviour related definitions. **********************************/
|
/* Scheduling behaviour related definitions. **********************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -154,8 +150,6 @@
|
||||||
* be provided with locks. */
|
* be provided with locks. */
|
||||||
#define configUSE_NEWLIB_REENTRANT 0
|
#define configUSE_NEWLIB_REENTRANT 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Software timer related definitions. ****************************************/
|
/* Software timer related definitions. ****************************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -186,8 +180,6 @@
|
||||||
* if configUSE_TIMERS is set to 1. */
|
* if configUSE_TIMERS is set to 1. */
|
||||||
#define configTIMER_QUEUE_LENGTH 10
|
#define configTIMER_QUEUE_LENGTH 10
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Memory allocation related definitions. *************************************/
|
/* Memory allocation related definitions. *************************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -248,8 +240,6 @@
|
||||||
* on the FreeRTOS port. */
|
* on the FreeRTOS port. */
|
||||||
#define configMAX_API_CALL_INTERRUPT_PRIORITY 0
|
#define configMAX_API_CALL_INTERRUPT_PRIORITY 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Hook and callback function related definitions. ****************************/
|
/* Hook and callback function related definitions. ****************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -276,8 +266,6 @@
|
||||||
* to 0 if left undefined. */
|
* to 0 if left undefined. */
|
||||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Run time and task stats gathering related definitions. *********************/
|
/* Run time and task stats gathering related definitions. *********************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -301,8 +289,6 @@
|
||||||
* undefined. */
|
* undefined. */
|
||||||
#define configUSE_STATS_FORMATTING_FUNCTIONS 0
|
#define configUSE_STATS_FORMATTING_FUNCTIONS 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Debugging assistance. ******************************************************/
|
/* Debugging assistance. ******************************************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -315,7 +301,13 @@
|
||||||
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__ )"
|
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__ )"
|
||||||
* or it can simple disable interrupts and sit in a loop to halt all execution
|
* or it can simple disable interrupts and sit in a loop to halt all execution
|
||||||
* on the failing line for viewing in a debugger. */
|
* on the failing line for viewing in a debugger. */
|
||||||
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ; ; ); }
|
#define configASSERT(x) \
|
||||||
|
if ((x) == 0) \
|
||||||
|
{ \
|
||||||
|
taskDISABLE_INTERRUPTS(); \
|
||||||
|
for (;;) \
|
||||||
|
; \
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Cortex-M MPU specific definitions. *****************************************/
|
/* Cortex-M MPU specific definitions. *****************************************/
|
||||||
|
@ -370,8 +362,6 @@
|
||||||
* call into the secure side of an ARMv8-M chip. Not used by any other ports. */
|
* call into the secure side of an ARMv8-M chip. Not used by any other ports. */
|
||||||
#define secureconfigMAX_SECURE_CONTEXTS 5
|
#define secureconfigMAX_SECURE_CONTEXTS 5
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* Definitions that include or exclude functionality. *************************/
|
/* Definitions that include or exclude functionality. *************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -406,5 +396,4 @@
|
||||||
#define INCLUDE_xTaskGetHandle 0
|
#define INCLUDE_xTaskGetHandle 0
|
||||||
#define INCLUDE_xTaskResumeFromISR 1
|
#define INCLUDE_xTaskResumeFromISR 1
|
||||||
|
|
||||||
|
|
||||||
#endif /* __FREERTOS_CONFIG_H__ */
|
#endif /* __FREERTOS_CONFIG_H__ */
|
||||||
|
|
Loading…
Reference in a new issue