mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-30 02:12:03 -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
|
||||
* abbreviated explanation of each configuration item. Online and reference
|
||||
* 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
|
||||
* before this file will build.
|
||||
|
@ -11,8 +11,6 @@
|
|||
* generic file, if one is available.
|
||||
******************************************************************************/
|
||||
|
||||
|
||||
|
||||
#ifndef __FREERTOS_CONFIG_H__
|
||||
#define __FREERTOS_CONFIG_H__
|
||||
|
||||
|
@ -25,7 +23,7 @@
|
|||
* The default value is set to 20MHz and matches the QEMU demo settings. Your
|
||||
* application will certainly need a different value so set this correctly.
|
||||
* This is very often, but not always, equal to the main system clock frequency. */
|
||||
#define configCPU_CLOCK_HZ ( ( unsigned long ) 20000000 )
|
||||
#define configCPU_CLOCK_HZ ((unsigned long)20000000)
|
||||
|
||||
/* configSYSTICK_CLOCK_HZ is an optional parameter for ARM Cortex-M ports only.
|
||||
*
|
||||
|
@ -43,8 +41,6 @@
|
|||
#define configSYSTICK_CLOCK_HZ [Platform specific]
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Scheduling behaviour related definitions. **********************************/
|
||||
/******************************************************************************/
|
||||
|
@ -154,8 +150,6 @@
|
|||
* be provided with locks. */
|
||||
#define configUSE_NEWLIB_REENTRANT 0
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Software timer related definitions. ****************************************/
|
||||
/******************************************************************************/
|
||||
|
@ -172,7 +166,7 @@
|
|||
* task, so its priority is set like any other task. See
|
||||
* https://www.freertos.org/RTOS-software-timer-service-daemon-task.html Only used
|
||||
* if configUSE_TIMERS is set to 1. */
|
||||
#define configTIMER_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
|
||||
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1)
|
||||
|
||||
/* configTIMER_TASK_STACK_DEPTH sets the size of the stack allocated to the
|
||||
* timer task (in words, not in bytes!). The timer task is a standard FreeRTOS
|
||||
|
@ -186,8 +180,6 @@
|
|||
* if configUSE_TIMERS is set to 1. */
|
||||
#define configTIMER_QUEUE_LENGTH 10
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Memory allocation related definitions. *************************************/
|
||||
/******************************************************************************/
|
||||
|
@ -248,8 +240,6 @@
|
|||
* on the FreeRTOS port. */
|
||||
#define configMAX_API_CALL_INTERRUPT_PRIORITY 0
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Hook and callback function related definitions. ****************************/
|
||||
/******************************************************************************/
|
||||
|
@ -276,16 +266,14 @@
|
|||
* to 0 if left undefined. */
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Run time and task stats gathering related definitions. *********************/
|
||||
/******************************************************************************/
|
||||
|
||||
/* Set configGENERATE_RUN_TIME_STATS to 1 to have FreeRTOS collect data on the
|
||||
* processing time used by each task. Set to 0 to not collect the data. The
|
||||
* application writer needs to provide a clock source if set to 1. Defaults to 0
|
||||
* if left undefined. See https://www.freertos.org/rtos-run-time-stats.html */
|
||||
* processing time used by each task. Set to 0 to not collect the data. The
|
||||
* application writer needs to provide a clock source if set to 1. Defaults to 0
|
||||
* if left undefined. See https://www.freertos.org/rtos-run-time-stats.html */
|
||||
#define configGENERATE_RUN_TIME_STATS 0
|
||||
|
||||
/* Set configUSE_TRACE_FACILITY to include additional task structure members
|
||||
|
@ -301,8 +289,6 @@
|
|||
* undefined. */
|
||||
#define configUSE_STATS_FORMATTING_FUNCTIONS 0
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Debugging assistance. ******************************************************/
|
||||
/******************************************************************************/
|
||||
|
@ -315,7 +301,13 @@
|
|||
* 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
|
||||
* 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. *****************************************/
|
||||
|
@ -370,8 +362,6 @@
|
|||
* call into the secure side of an ARMv8-M chip. Not used by any other ports. */
|
||||
#define secureconfigMAX_SECURE_CONTEXTS 5
|
||||
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* Definitions that include or exclude functionality. *************************/
|
||||
/******************************************************************************/
|
||||
|
@ -406,5 +396,4 @@
|
|||
#define INCLUDE_xTaskGetHandle 0
|
||||
#define INCLUDE_xTaskResumeFromISR 1
|
||||
|
||||
|
||||
#endif /* __FREERTOS_CONFIG_H__ */
|
||||
|
|
Loading…
Reference in a new issue