电子发烧友App

硬声App

0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示
电子发烧友网>电子资料下载>嵌入式开发>FreeRTOSConfig.h 配置头文件详细注解

FreeRTOSConfig.h 配置头文件详细注解

2017-11-30 | rar | 2.2 MB | 次下载 | 1积分

资料介绍

  FreeRTOSConfig.h 配置头文件详细注解

  /*

  FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.

  All rights reserved

  VISIT [url]http://www.FreeRTOS.org[/url] TO ENSURE YOU ARE USING THE LATEST VERSION.

  This file is part of the FreeRTOS distribution.

  FreeRTOS is free software; you can redistribute it and/or modify it under

  the terms of the GNU General Public License (version 2) as published by the

  Free Software Foundation 》》》》 AND MODIFIED BY 《《《《 the FreeRTOS exception.

  ***************************************************************************

  》》! NOTE: The modification to the GPL is included to allow you to !《《

  》》! distribute a combined work that includes FreeRTOS without being !《《

  》》! obliged to provide the source code for proprietary components !《《

  》》! outside of the FreeRTOS kernel. !《《

  ***************************************************************************

  FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY

  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS

  FOR A PARTICULAR PURPOSE. Full license text is available on the following

  link: [url]http://www.freertos.org/a00114.html[/url]

  ***************************************************************************

  * *

  * FreeRTOS provides completely free yet professionally developed, *

  * robust, strictly quality controlled, supported, and cross *

  * platform software that is more than just the market leader, it *

  * is the industry‘s de facto standard. *

  * *

  * Help yourself get started quickly while simultaneously helping *

  * to support the FreeRTOS project by purchasing a FreeRTOS *

  * tutorial book, reference manual, or both: *

  * [url]http://www.FreeRTOS.org/Documentation[/url] *

  * *

  ***************************************************************************

  [url]http://www.FreeRTOS.org/FAQHelp.html[/url] - Having a problem? Start by reading

  the FAQ page “My application does not run, what could be wrong?”。 Have you

  defined configASSERT()?

  [url]http://www.FreeRTOS.org/support[/url] - In return for receiving this top quality

  embedded software for free we request you assist our global community by

  participating in the support forum.

  [url]http://www.FreeRTOS.org/training[/url] - Investing in training allows your team to

  be as productive as possible as early as possible. Now you can receive

  FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers

  Ltd, and the world’s leading authority on the world‘s leading RTOS.

  [url]http://www.FreeRTOS.org/plus[/url] - A selection of FreeRTOS ecosystem products,

  including FreeRTOS+Trace - an indispensable productivity tool, a DOS

  compatible FAT file system, and our tiny thread aware UDP/IP stack.

  [url]http://www.FreeRTOS.org/labs[/url] - Where new FreeRTOS products go to incubate.

  Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.

  [url]http://www.OpenRTOS.com[/url] - Real Time Engineers ltd. license FreeRTOS to High

  Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS

  licenses offer ticketed support, indemnification and commercial middleware.

  [url]http://www.SafeRTOS.com[/url] - High Integrity Systems also provide a safety

  engineered and independently SIL3 certified version for use in safety and

  mission critical applications that require provable dependability.

  1 tab == 4 spaces!

  */

  /*

  *=================================== 中文注解 =======================================

  *

  * 作者:野火 Fire

  * 论坛:[url]www.firebbs.cn[/url]

  * 淘宝:[url]www.fire-stm32.taobao.com[/url]

  *

  * FreeRTOSConfig.h这个头文件用来配置FreeRTOS的功能,但是并不全面,剩下的其他功能可以

  * 在FreeRTOS.h这个头文件配置,比如使能互斥信号量,使能递归信号量,使能事件标志组这些

  * 内核对象的功能时,是在FreeRTOS.h这个头文件里面配置的。即要想完全使用FreeRTOS的功能

  * 需要这两个头文件一起联合使用。

  *====================================================================================

  */

  #ifndef FREERTOS_CONFIG_H

  #define FREERTOS_CONFIG_H

  /*-----------------------------------------------------------

  * Application specific definitions.

  *

  * These definitions should be adjusted for your particular hardware and

  * application requirements.

  *

  * THESE PARAMETERS ARE DESCRIBED WITHIN THE ’CONFIGURATION‘ SECTION OF THE

  * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.

  *

  * See [url]http://www.freertos.org/a00110.html.[/url]

  *----------------------------------------------------------*/

  #define configUSE_PREEMPTION 1 /* 使能抢占式调度,否则用合作式调度,默认我们都是用抢占式 */

  #define configUSE_IDLE_HOOK 0 /* 空闲任务钩子函数 */

  #define configUSE_TICK_HOOK 0 /* 时基任务钩子函数 */

  #define configCPU_CLOCK_HZ ( ( unsigned long ) 72000000 ) /* 系统时钟,单位为HZ */

  #define configTICK_RATE_HZ ( ( TickType_t ) 1000 ) /* SysTick中断周期,单位为HZ,1000HZ即1ms中断一次 */

  #define configMAX_PRIORITIES ( 5 ) /* 任务能使用最大优先级个数,数字越大优先级越高,范围为:0~configMAX_PRIORITIES-1

  最低的0由系统分配给空闲任务,每个任务的优先级可以相同 */

  #define configMINIMAL_STACK_SIZE ( ( unsigned short ) 128 )

  #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 17 * 1024 ) ) /* 堆空间大小,内核在创建各种对象时需要用到,单位为字,即4个字节 */

  #define configMAX_TASK_NAME_LEN ( 16 ) /* 任务名称的长度,即字符串的长度 */

  #define configUSE_TRACE_FACILITY 0

  #define configUSE_16_BIT_TICKS 0 /* SysTick Counter的宽度,0表示32bit,1表示16bit,STM32用的是32bit */

  #define configIDLE_SHOULD_YIELD 1 /* 上下文切换强制使能,即当前任务执行完毕之后还有剩余的时间片,可以强制自己放弃

  剩余的时间片,然后执行上下文切换去执行其他的任务*/

  /* Co-routine definitions. */

  #define configUSE_CO_ROUTINES 0 /* 合作式调度配置 */

  #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )

  /* Set the following definitions to 1 to include the API function, or zero

  to exclude the API function. */

  #define INCLUDE_vTaskPrioritySet 1

  #define INCLUDE_uxTaskPriorityGet 1

  #define INCLUDE_vTaskDelete 1

  #define INCLUDE_vTaskCleanUpResources 0

  #define INCLUDE_vTaskSuspend 1

  #define INCLUDE_vTaskDelayUntil 1

  #define INCLUDE_vTaskDelay 1

  /*=========================================== SysTick 和 PendSV 的中断优先级配置 ======================================*/

  /* This is the raw value as per the Cortex-M3 NVIC. Values can be 255

  (lowest) to 0 (1?) (highest)。 */

  /*

  * 当把配置好的优先级写到寄存器的时候是按照这个公式来写的:((priority 《《 (8 - __NVIC_PRIO_BITS)) & 0xff) = 255 =》 priority = 15

  * 因为在Cortex-M 系列中是用8位来表示优先级,操作的时候以8bit来写的,但是ST的处理器只用了其中的高四位,即__NVIC_PRIO_BITS=4。

  *

  * configKERNEL_INTERRUPT_PRIORITY 宏用来配置 SysTick 和 PendSV 的中断优先级,这里配置为 15,即无论中断优先级如何分钟,都是最低。

  *

  * 当 SysTick 和 PendSV 的中断优先级 配置为最低的时候,可以提供系统的实时性,即外部中断可以随时响应。

  */

  #define configKERNEL_INTERRUPT_PRIORITY 255

  /* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!

  See [url]http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html.[/url] */

  /*===========================================可屏蔽的中断优先级配置====================================================*/

  /*

  * 用于配置STM32的特殊寄存器basepri寄存器的值,用于屏蔽中断,当大于basepri值的

  * 优先级的中断将被全部屏蔽。basepri只有4bit有效,默认只为0,即全部中断都没有被屏蔽。

  * 这里191对应的二进制为(1011 1111)b只有高四位有效,即(1011)b=11,意思就是中断优先级大于11的中断都被屏蔽

  *

  * 在FreeRTOS中,关中断是通过配置basepri寄存器来实现的,关掉的中断由配置的basepri的值决定,小于basepri值的

  * 中断FreeRTOS是关不掉的,这样做的好处是可以系统设计者可以人为的控制哪些非常重要的中断不能被关闭,在紧要的关头必须被响应。

  * 而在UCOS中,关中断是通过控制PRIMASK来实现的,PRIMASK是一个单1的二进制位,写1则除能除了NMI和硬 fault的所有中断。当os关闭

  * 中断之后,即使是你在系统中设计的非常紧急的中断来了都不能马上响应,这加大了中断延迟的时间,如果是性命攸关的场合,那后果估计挺严重。

  *

  * 当把配置好的优先级写到寄存器的时候是按照这个公式来写的:((priority 《《 (8 - __NVIC_PRIO_BITS)) & 0xff) = 191 =》 priority = 11

  */

  #define configMAX_SYSCALL_INTERRUPT_PRIORITY 191 /* equivalent to 0xb0, or priority 11. */

  /* This is the value being used as per the ST library which permits 16

  priority values, 0 to 15. This must correspond to the

  configKERNEL_INTERRUPT_PRIORITY setting. Here 15 corresponds to the lowest

  NVIC value of 255. */

  /*

  * configLIBRARY_KERNEL_INTERRUPT_PRIORITY 宏就是 这个公式:((priority 《《 (8 - __NVIC_PRIO_BITS)) & 0xff)里面的priority

  * 即实际用来配置STM32的中断优先级,但是要写到8位的中断优先级的寄存器里面,还是需要用上面的公式先转化下。通过计算之后就

  * 是上面configKERNEL_INTERRUPT_PRIORITY这个宏的值,用于配置SysTick和PendSV 的中断优先级。

  */

  #define configLIBRARY_KERNEL_INTERRUPT_PRIORITY 15 // 0x0f

  /*=================================== SVC,PendSV 和 SysTick 中断服务函数的配置 ========================================*/

  /*

  * 在移植FreeRTOS的时候,需要用到STM32的三个中断,分别是SVC,PendSV和SysTick,这三个中断在向量表

  * 里面的名字分别是:SVC_Handler,PendSV_Handler和SysTick_Handler(在启动文件:startup_stm32f10x_hd.s中)

  *

  * 而在port.c里面写的这三个中断的服务函数的名称跟向量表里面的名称不一样,为了中断响应之后能正确的执行port.c

  * 里面写好的中断服务函数,我们需要统一向量表和中断服务函数的名字。

  *

  * 为了实现这个目的,可以有两种方法:

  * 1:把启动文件里面的向量表里面的名字改成跟port.c里面的中断服务函数名一样。

  * 2:把port.c里面的中断服务函数名改成跟启动文件里面的中断向量表里面的名字一样。

  *

  * 这里为了保持启动文件的完整性,我们统一修改port.c里面的中断函数名,即添加下面三个宏定义即可。

  * 如果你在stm32f10x_it.c这里面实现了这三个中断服务函数的定义的话,那么为了避免跟port.c里面的重复定义,应该

  * 把stm32f10x_it.c里面的注释掉。

  */

  #define xPortPendSVHandler PendSV_Handler

  #define xPortSysTickHandler SysTick_Handler

  #define vPortSVCHandler SVC_Handler

  #endif /* FREERTOS_CONFIG_H */

下载该资料的人也在下载 下载该资料的人还在阅读
更多 >

评论

查看更多

下载排行

本周

  1. 1TC358743XBG评估板参考手册
  2. 1.36 MB  |  330次下载  |  免费
  3. 2开关电源基础知识
  4. 5.73 MB  |  6次下载  |  免费
  5. 3100W短波放大电路图
  6. 0.05 MB  |  4次下载  |  3 积分
  7. 4嵌入式linux-聊天程序设计
  8. 0.60 MB  |  3次下载  |  免费
  9. 5基于FPGA的光纤通信系统的设计与实现
  10. 0.61 MB  |  2次下载  |  免费
  11. 6基于FPGA的C8051F单片机开发板设计
  12. 0.70 MB  |  2次下载  |  免费
  13. 751单片机窗帘控制器仿真程序
  14. 1.93 MB  |  2次下载  |  免费
  15. 8基于51单片机的RGB调色灯程序仿真
  16. 0.86 MB  |  2次下载  |  免费

本月

  1. 1OrCAD10.5下载OrCAD10.5中文版软件
  2. 0.00 MB  |  234315次下载  |  免费
  3. 2555集成电路应用800例(新编版)
  4. 0.00 MB  |  33564次下载  |  免费
  5. 3接口电路图大全
  6. 未知  |  30323次下载  |  免费
  7. 4开关电源设计实例指南
  8. 未知  |  21548次下载  |  免费
  9. 5电气工程师手册免费下载(新编第二版pdf电子书)
  10. 0.00 MB  |  15349次下载  |  免费
  11. 6数字电路基础pdf(下载)
  12. 未知  |  13750次下载  |  免费
  13. 7电子制作实例集锦 下载
  14. 未知  |  8113次下载  |  免费
  15. 8《LED驱动电路设计》 温德尔著
  16. 0.00 MB  |  6653次下载  |  免费

总榜

  1. 1matlab软件下载入口
  2. 未知  |  935054次下载  |  免费
  3. 2protel99se软件下载(可英文版转中文版)
  4. 78.1 MB  |  537796次下载  |  免费
  5. 3MATLAB 7.1 下载 (含软件介绍)
  6. 未知  |  420026次下载  |  免费
  7. 4OrCAD10.5下载OrCAD10.5中文版软件
  8. 0.00 MB  |  234315次下载  |  免费
  9. 5Altium DXP2002下载入口
  10. 未知  |  233046次下载  |  免费
  11. 6电路仿真软件multisim 10.0免费下载
  12. 340992  |  191185次下载  |  免费
  13. 7十天学会AVR单片机与C语言视频教程 下载
  14. 158M  |  183278次下载  |  免费
  15. 8proe5.0野火版下载(中文版免费下载)
  16. 未知  |  138040次下载  |  免费