首页 > 其他分享 >1. 手动移植FreeRTOS V9.00到 Stm32F103C8T6

1. 手动移植FreeRTOS V9.00到 Stm32F103C8T6

时间:2023-11-09 12:58:14浏览次数:36  
标签:__ www http FreeRTOS configUSE V9.00 Stm32F103C8T6 define

记录移植过程,以便以后查看:

1.使用cubeMAX配置一个工程

a.选择单片机型号:

 b。设置SWD调试,选TIM4作为系统时钟,systick要用来跑freeRTOS

 c.NVIC默认使用Group4

 配置GPIO,我这里配置了两个引脚,作为LED输出

 

d,RCC都选外部晶振

 e。配置时钟树,HCLK 72Mhz

 

 f。project 配置我使用MDK ,5.27版本,其他默认

 g.这里我配置使用必需的库并单独生成.c和.h

 f.创建代码,结束创建

 

 

2.下载 freeRTOs源码

 3.在我自己创建的工程里面新建FreeRTOS文件,结构如下:

 把源码的FreeRTOSv9.0.0\FreeRTOS\Source 文件夹下的c文件复制到src中,

把FreeRTOSv9.0.0\FreeRTOS\Source\portable\MemMang中内存管理文件   heap_4.c 加到port中

FreeRTOSv9.0.0\FreeRTOS\Source\portable\RVDS\ARM_CM3 下文件加入port

FreeRTOSv9.0.0\FreeRTOS\Demo\CORTEX_STM32F103_Keil 下FreeRTOSConfig.h文件放到port中

FreeRTOSv9.0.0\FreeRTOS\Source\include  头文件放到Inc中

最后如下:

 

 

 

 

4.打开keil工程,添加头文件和源文件

 

 

5.修改freeRTOS config 文件:具体参考如下:

/*
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.
*----------------------------------------------------------*/

 

#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__)
#include <stdint.h>
extern uint32_t SystemCoreClock;
#endif

//¶ÏÑÔ
#define vAssertCalled(char,int) //printf("Error:%s,%d\r\n",char,int)
#define configASSERT(x) if((x)==0) vAssertCalled(__FILE__,__LINE__)


#define configUSE_PREEMPTION 1
#define configUSE_TIME_SLICING 1


#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1


#define configCPU_CLOCK_HZ (SystemCoreClock)
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )


#define configMAX_PRIORITIES ( 32 )
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 128 )
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 10 * 1024 ) )
#define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_16_BIT_TICKS 0
#define configIDLE_SHOULD_YIELD 1


#define configUSE_TASK_NOTIFICATIONS 1
#define configUSE_QUEUE_SETS 1
#define configUSE_TICKLESS_IDLE 0
#define configUSE_MUTEXES 1
#define configUSE_RECURSIVE_MUTEXES 1
#define configUSE_MALLOC_FAILED_HOOK 0
#define configUSE_APPLICATION_TASK_TAG 0
#define configUSE_COUNTING_SEMAPHORES 1

#define configQUEUE_REGISTRY_SIZE 8

#define configCHECK_FOR_STACK_OVERFLOW 0

#define configSUPPORT_DYNAMIC_ALLOCATION 1


#define configUSE_IDLE_HOOK 0
#define configUSE_TICK_HOOK 0


#define configGENERATE_RUN_TIME_STATS 0
#define configUSE_TRACE_FACILITY 0
#define configUSE_STATS_FORMATTING_FUNCTIONS 0


#define configUSE_CO_ROUTINES 0
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )


#define configUSE_TIMERS 1
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES-1)
#define configTIMER_QUEUE_LENGTH 5
#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE*2)


#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


#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) )


#define vPortSVCHandler SVC_Handler
#define xPortPendSVHandler PendSV_Handler
#define xPortSysTickHandler SysTick_Handler

#endif /* FREERTOS_CONFIG_H */

 

 

 

6.编译工程,会发现这个问题

 找到中断处理函数,屏蔽这三个中断即可

 

7.编译成功后,创建一个任务,测试两个LED是否是一起亮一起灭,如果是就说明成功了

 

标签:__,www,http,FreeRTOS,configUSE,V9.00,Stm32F103C8T6,define
From: https://www.cnblogs.com/cc-cnblogs/p/17819251.html

相关文章

  • freeRTOS 学习
    一、任务状态任务状态可以分成Running和NotRunning:  但实际的NotRunning状态还有许多的其他状态作为细分。  包括挂起,阻塞和就绪态挂起状态表示该任务虽然已经创建但是在没有进入其他状态时,永远不会运行。阻塞态表示该任务在等待一个事件,在事件到来之前都是阻塞......
  • FreeRTOS(2):队列、信号量、互斥量
    1、队列 1.1数据传输方法任务之间如何传输数据 数据个数互斥措施阻塞-唤醒全局变量1无无环形缓冲区多个无无队列多个有有队列又称消息队列,是一种常用于任务间通信的数据结构,队列可以在任务与任务间、中断和任务间传递信息。为什么不使用全局变......
  • FreeRTOS任务调度
    FreeRTOS任务调度器有哪些功能?FreeRTOS任务调度器具有以下功能:实现并发性和时间确定性:FreeRTOS的任务调度器是实现并发性和时间确定性的核心组件,它使用抢占式调度算法,通过分配优先级来确保高优先级的任务能够在低优先级任务之前执行。动态优先级调整:任务的优先级可以动态地......
  • FreeRTOS 解析
    FreeRTOS解析xidianjunnan 分类专栏:操作系统文章标签:mcu物联网iot————————————————版权声明:本文为CSDN博主「xidianjunnan」的原创文章,遵循CC4.0BY-SA版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/xidianjunnan/article......
  • FreeRTOS深入教程(任务创建的深入和任务调度机制分析)
    (文章目录)前言本篇文章将带大家深入学习任务的创建和分析任务调度的机制。一、深入理解任务的创建创建任务函数原型:BaseType_txTaskCreate(TaskFunction_tpxTaskCode,constchar*constpcName,/*lint!e971Unqualifiedchartypes......
  • FreeRTOS深入教程(队列内部机制和源码分析)
    (文章目录)前言本篇文章主要来为大家分析队列的内部机制和源码实现。一、队列结构体分析在FreeRTOS中队列会使用一个结构体来表示:1.int8_t*pcHead和int8_t*pcWriteTo:这些指针指向队列存储区的头部和下一个可写入的位置。队列存储区是一个用于存储队列中数据项的缓冲......
  • FreeRTOS上移植RT-thread的at组件
    因为一开始用的是FreeRTOS,因此,项目中的RTOS也是FreeRTOS,但是在项目开发过程中,发现需要解析AT指令集,因此来移植一波RT-thread的软件包。下次就用RT-thread了,纯纯浪费时间移植。首先捋清大概思路。1.串口接收中断被外界消息输入触发,中断在回调函数中将消息内容发给AT任务,并进行......
  • FreeRTOS深入教程(任务的引入及栈的作用)
    (文章目录)前言本篇文章开始带大家深入学习FreeRTOS,带大家学习什么是任务,并且深入学习栈的作用。一、任务的引入在FreeRTOS中,任务(Task)是一个基本的执行单元,它代表了一个并行执行的工作单元。FreeRTOS是一个实时操作系统,允许你创建多个任务,每个任务都有自己的代码、堆栈和优......
  • FreeRTOS入门教程(事件组概念和函数使用)
    (文章目录)前言本篇文章将带大家学习什么是事件组以及如何使用事件组。一、事件组概念事件组通常是由一组位(bits)组成的数据结构,其中每一位都对应着某个特定的事件。每个位可以被设置或清除,表示相应的事件发生或未发生。这种位的组合形成了一个类似于二进制数的集合,每个位都代......
  • FreeRTOS 原理 --- 临界区(critical section)
    关调度器voidvTaskSuspendAll(void){/*AcriticalsectionisnotrequiredasthevariableisoftypeBaseType_t.PleasereadRichardBarry'sreplyinthefollowinglinktoapostintheFreeRTOSsupportforumbeforereportingthisasa......