【STM32标准库】移植FreeRTOS

1、在工程中新建一个FreeRTOS文件夹,并把FreeRTOSv9.0.0\FreeRTOS\Source的文件全部复制过来。

 2、在portable文件夹中,只需要保留以下三个文件夹,其他的全部删除。

 3、在keil工程中新建FreeRTOS_CODE和FreeRTOS_PORTTABLE分组。

 在FreeRTOS_CODE分组中增加以下6个文件。

 在FreeRTOS_PORTTABLE分组中增加以下两个文件。

 

 添加完的效果如下。

 4、在keil工程中加入以下两个路径。

 5、从FreeRTOSv9.0.0\FreeRTOS\Demo\CORTEX_STM32F103_Keil中复制FreeRTOSConfig.h文件到WarGodCode(FreeRTOS)\FreeRTOS\include。

 6、将stm32f10x_it.c 文件中下面3个函数注释掉。

 7、将FreeRTOSConfig.h文件替换成以下代码。

/*
    FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
    All rights reserved

    VISIT http://www.FreeRTOS.org 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: http://www.freertos.org/a00114.html

    ***************************************************************************
     *                                                                       *
     *    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:                          *
     *    http://www.FreeRTOS.org/Documentation                              *
     *                                                                       *
    ***************************************************************************

    http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading
    the FAQ page "My application does not run, what could be wrong?".  Have you
    defined configASSERT()?

    http://www.FreeRTOS.org/support - In return for receiving this top quality
    embedded software for free we request you assist our global community by
    participating in the support forum.

    http://www.FreeRTOS.org/training - 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.

    http://www.FreeRTOS.org/plus - 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.

    http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
    Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.

    http://www.OpenRTOS.com - 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.

    http://www.SafeRTOS.com - 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!
*/

#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 http://www.freertos.org/a00110.html.
 *----------------------------------------------------------*/
 
//针对不同的编译器调用不同的stdint.h文件
 #if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__)
  #include <stdint.h>
  extern uint32_t SystemCoreClock;
#endif

/***************************************************************************************************************/
/*                                        FreeRTOS基础配置配置选项                                              */
/***************************************************************************************************************/
#define configUSE_PREEMPTION		1 //1使用抢占式内核,0使用协程
#define configUSE_TIME_SLICING    1 //1使能时间片调度(默认是使能的) 
//1启用特殊方法来选择下一个要运行的任务,一般是硬件计算前导零指令,如果所使用的MCU没有这些硬件指令的话此宏应该设置为0!
#define configUSE_PORT_OPTIMISED_TASK_SELECTION     0

#define configUSE_TICKLESS_IDLE 0 //1启用低功耗tickless模式
#define configUSE_QUEUE_SETS    1 //为1时启用队列

#define configCPU_CLOCK_HZ			(SystemCoreClock)  //CPU频率	
#define configTICK_RATE_HZ			(1000) //时钟节拍频率,这里设置为1000,周期就是1ms
#define configMAX_PRIORITIES		(5)  //可使用的最大优先级
#define configMINIMAL_STACK_SIZE	((unsigned short)64)  //空闲任务使用的堆栈大小
#define configMAX_TASK_NAME_LEN		(16)  //任务名字字符串长度

#define configUSE_16_BIT_TICKS		0 //系统节拍计数器变量数据类型,1表示为16位无符号整形,0表示为32位无符号整形

#define configIDLE_SHOULD_YIELD		 1 //为1时空闲任务放弃CPU使用权给其他同优先级的用户任务
#define configUSE_TASK_NOTIFICATIONS    1   //为1时开启任务通知功能,默认开启
#define configUSE_MUTEXES   1 //为1时使用互斥信号量
#define configQUEUE_REGISTRY_SIZE    8  //不为0时表示启用队列记录,具体的值是可以记录的队列和信号量最大数目。

//大于0时启用堆栈溢出检测功能,如果使用此功能用户必须提供一个栈溢出钩子函数,如果使用的话
//此值可以为1或者2,因为有两种栈溢出检测方法。
#define configCHECK_FOR_STACK_OVERFLOW    0

#define configUSE_RECURSIVE_MUTEXES    1  //为1时使用递归互斥信号量
#define configUSE_MALLOC_FAILED_HOOK    0  //1使用内存申请失败钩子函数
#define configUSE_APPLICATION_TASK_TAG    0                       
#define configUSE_COUNTING_SEMAPHORES    1 //为1时使用计数信号量


/***************************************************************************************************************/
/*                                FreeRTOS与内存申请有关配置选项                                                */
/***************************************************************************************************************/
#define configSUPPORT_DYNAMIC_ALLOCATION    1 //支持动态内存申请
#define configTOTAL_HEAP_SIZE		((size_t)(5 * 1024))  //系统所有总的堆大小

/***************************************************************************************************************/
/*                                FreeRTOS与钩子函数有关的配置选项                                              */
/***************************************************************************************************************/
#define configUSE_IDLE_HOOK			0 //1,使用空闲钩子;0,不使用
#define configUSE_TICK_HOOK			0 //1,使用空闲钩子;0,不使用


/***************************************************************************************************************/
/*                                FreeRTOS与运行时间和任务状态收集有关的配置选项                                 */
/***************************************************************************************************************/
#define configGENERATE_RUN_TIME_STATS    0  //为1时启用运行时间统计功能
#define configUSE_TRACE_FACILITY    1  //为1启用可视化跟踪调试
#define configUSE_STATS_FORMATTING_FUNCTIONS     1 //与宏configUSE_TRACE_FACILITY同时为1时会编译下面3个函数
                                                  //prvWriteNameToBuffer(),vTaskList(),vTaskGetRunTimeStats()

/***************************************************************************************************************/
/*                                FreeRTOS与协程有关的配置选项                                                  */
/***************************************************************************************************************/
#define configUSE_CO_ROUTINES 		0 //为1时启用协程,启用协程以后必须添加文件croutine.c
#define configMAX_CO_ROUTINE_PRIORITIES (2) //协程的有效优先级数目

/***************************************************************************************************************/
/*                                FreeRTOS与软件定时器有关的配置选项                                            */
/***************************************************************************************************************/
#define configUSE_TIMERS   1  //为1时启用软件定时器
#define configTIMER_TASK_PRIORITY    (2)  //软件定时器优先级
#define configTIMER_QUEUE_LENGTH    10  //软件定时器队列长度
#define configTIMER_TASK_STACK_DEPTH    (128) //软件定时器任务堆栈大小

/***************************************************************************************************************/
/*                                FreeRTOS可选函数配置选项                                                      */
/***************************************************************************************************************/
#define INCLUDE_xTaskGetSchedulerState          1                       
#define INCLUDE_vTaskPrioritySet                1
#define INCLUDE_uxTaskPriorityGet                1
#define INCLUDE_vTaskDelete                        1
#define INCLUDE_vTaskCleanUpResources            1
#define INCLUDE_vTaskSuspend                    1
#define INCLUDE_vTaskDelayUntil                    1
#define INCLUDE_vTaskDelay                        1
#define INCLUDE_eTaskGetState                    1
#define INCLUDE_xTimerPendFunctionCall            1

/***************************************************************************************************************/
/*                                FreeRTOS与中断有关的配置选项                                                  */
/***************************************************************************************************************/
#ifdef __NVIC_PRIO_BITS
    #define configPRIO_BITS               __NVIC_PRIO_BITS
#else
    #define configPRIO_BITS               4                  
#endif

#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY     15  //中断最低优先级
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY      5 //系统可管理的最高中断优先级
#define configKERNEL_INTERRUPT_PRIORITY    (configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
#define configMAX_SYSCALL_INTERRUPT_PRIORITY     (configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))

/***************************************************************************************************************/
/*                                FreeRTOS与中断服务函数有关的配置选项                                          */
/***************************************************************************************************************/
#define vPortSVCHandler           SVC_Handler
#define xPortPendSVHandler        PendSV_Handler
#define xPortSysTickHandler       SysTick_Handler

#endif /* FREERTOS_CONFIG_H */

8、在main.c中编写代码验证功能,这里创建了两个LED任务,优先级相同,每隔500ms轮流执行,烧录代码后可以看到两个LED都在闪烁。

/**
  ******************************************************************************
  * @file    Project/STM32F10x_StdPeriph_Template/main.c 
  * @author  MCD Application Team
  * @version V3.6.0
  * @date    20-September-2021
  * @brief   Main program body
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 2011 STMicroelectronics.
  * All rights reserved.
  *
  * This software is licensed under terms that can be found in the LICENSE file
  * in the root directory of this software component.
  * If no LICENSE file comes with this software, it is provided AS-IS.
  *
  ******************************************************************************
  */

/* Includes ------------------------------------------------------------------*/
#include "stm32f10x.h"
#include <stdio.h>

#include "led.h"

#include "FreeRTOS.h"
#include "task.h"

//任务优先级
#define START_TASK_PRIO		 1
//任务堆栈大小	
#define START_STK_SIZE 		128  
//任务句柄
TaskHandle_t StartTask_Handler;
//任务函数
void Start_Task(void *pvParameters);

//任务优先级
#define LED0_TASK_PRIO		1
//任务堆栈大小	
#define LED0_STK_SIZE 		128  
//任务句柄
TaskHandle_t Led0Task_Handler;
//任务函数
void Led0_Task(void *pvParameters);

//任务优先级
#define LED1_TASK_PRIO		 1
//任务堆栈大小	
#define LED1_STK_SIZE 		128  
//任务句柄
TaskHandle_t Led1Task_Handler;
//任务函数
void Led1_Task(void *pvParameters);

/**
  * @brief  Main program.
  * @param  None
  * @retval None
  */
int main(void)
{
  /* Add your application code here
     */  
   
  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_4);//设置系统中断优先级分组4
  LED_Init();

  //创建开始任务
  xTaskCreate((TaskFunction_t )Start_Task,            //任务函数
              (const char*    )"Start_Task",          //任务名称
              (uint16_t       )START_STK_SIZE,        //任务堆栈大小
              (void*          )NULL,                  //传递给任务函数的参数
              (UBaseType_t    )START_TASK_PRIO,       //任务优先级
              (TaskHandle_t*  )&StartTask_Handler);   //任务句柄  
              
  vTaskStartScheduler();          //开启任务调度
  
}

//开始任务任务函数
void Start_Task(void *pvParameters)
{
    taskENTER_CRITICAL();//进入临界区
       
    //创建LED0任务
    xTaskCreate((TaskFunction_t )Led0_Task,     	
                (const char*    )"LED0_Task",   	
                (uint16_t       )LED0_STK_SIZE, 
                (void*          )NULL,				
                (UBaseType_t    )LED0_TASK_PRIO,	
                (TaskHandle_t*  )&Led0Task_Handler);   
    
    //创建LED1任务
    xTaskCreate((TaskFunction_t )Led1_Task,     
                (const char*    )"LED1_Task",   
                (uint16_t       )LED1_STK_SIZE, 
                (void*          )NULL,
                (UBaseType_t    )LED1_TASK_PRIO,
                (TaskHandle_t*  )&Led1Task_Handler);  
                    
    vTaskDelete(StartTask_Handler); //删除开始任务
                 
    taskEXIT_CRITICAL();            //退出临界区
}

//LED0任务函数
void Led0_Task(void *pvParameters)
{
    while(1)
    {
        Led0_On();
        vTaskDelay(500);
        Led0_Off();
        vTaskDelay(500);
    }
}   

//LED1任务函数
void Led1_Task(void *pvParameters)
{
    while(1)
    {
        Led1_On();
        vTaskDelay(500);
        Led1_Off();
        vTaskDelay(500);
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_46183891/article/details/129973501