当前位置: 首页 > news >正文

哪个网站可以做英文兼职建工社网校官网

哪个网站可以做英文兼职,建工社网校官网,江西省建设质量监督局网站,玉环市建设规划局网站1. 说明 freertos内核 非常精简,代码量也很少,官方也针对主流的编译器和内核准备好了移植文件,所以 freertos 的移植是非常简单的,很多工具(例如CubeMX)点点鼠标就可以生成一个 freertos 的工程&#xff0…

1. 说明

  • freertos内核 非常精简,代码量也很少,官方也针对主流的编译器和内核准备好了移植文件,所以 freertos 的移植是非常简单的,很多工具(例如CubeMX)点点鼠标就可以生成一个 freertos 的工程,本文就不介绍 CubeMX 生成 freertos 工程的方法了。
  • 本文介绍从官网下载 freertos 移植到自己工程的方法,这仍然是一件很简单的事情(除非你准备把他移植到一个官方没有提供移植文件的内核上),与其说是移植,到不如说是把代码加到自己的工程里
  • freertos 的移植是很简单的,关键点在于移植成功后,你是否能用好它,是否了解它工作的原理,本文暂不介绍 freertos 的具体实现和工作原理,这会在后面的文章中继续说明,本文只是以是以stm32为例,简单介绍一下移植的步骤。

2. 移植步骤

  • 准备一个目标芯片的工程

    • 这一步不再过多赘述,我这边使用了CubeMX 生成了一个工程。
  • 去官网下载 ferrrtos 源码

    • 下载地址:https://www.freertos.org/zh-cn-cmn-s/a00104.html
      在这里插入图片描述
  • 浏览一下目录结构,需要加入到工程中的文件都在第三张图和第四张图
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

  • 将上述图片所说的文件加到自己的工程中,添加后的工程如下:

    可以看见。freertos代码并不多,内核一共就这么多代码
    在这里插入图片描述

  • 由上图可以看见,我们还需要提供一个 FreeRTOSConfig.h 的文件用来配置 freertosFreeRTOSConfig.h 具体有哪些项本文先不深究,大家可以使用我下面提供的配置文件,这个文件是 CubeMX 生成 freertos工程时生成的。

/* USER CODE BEGIN Header */
/** FreeRTOS Kernel V10.3.1* Portion Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.* Portion Copyright (C) 2019 StMicroelectronics, Inc.  All Rights Reserved.** Permission is hereby granted, free of charge, to any person obtaining a copy of* this software and associated documentation files (the "Software"), to deal in* the Software without restriction, including without limitation the rights to* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of* the Software, and to permit persons to whom the Software is furnished to do so,* subject to the following conditions:** The above copyright notice and this permission notice shall be included in all* copies or substantial portions of the Software.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.** http://www.FreeRTOS.org* http://aws.amazon.com/freertos** 1 tab == 4 spaces!*/
/* USER CODE END Header */#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 and more 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*----------------------------------------------------------*//* USER CODE BEGIN Includes */
/* Section where include file can be added */
/* USER CODE END Includes *//* Ensure definitions are only used by the compiler, and not by the assembler. */
#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__)#include <stdint.h>extern uint32_t SystemCoreClock;void xPortSysTickHandler(void);
#endif
#ifndef CMSIS_device_header
#define CMSIS_device_header "stm32h7xx.h"
#endif /* CMSIS_device_header */#define configENABLE_FPU                         0
#define configENABLE_MPU                         0#define configUSE_PREEMPTION                     1
#define configSUPPORT_STATIC_ALLOCATION          0
#define configSUPPORT_DYNAMIC_ALLOCATION         1
#define configUSE_IDLE_HOOK                      0
#define configUSE_TICK_HOOK                      0
#define configCPU_CLOCK_HZ                       ( SystemCoreClock )
#define configTICK_RATE_HZ                       ((TickType_t)1000)
#define configMAX_PRIORITIES                     ( 56 )
#define configMINIMAL_STACK_SIZE                 ((uint16_t)128)
#define configTOTAL_HEAP_SIZE                    ((size_t)15360)
#define configMAX_TASK_NAME_LEN                  ( 16 )
#define configUSE_TRACE_FACILITY                 1
#define configUSE_16_BIT_TICKS                   0
#define configUSE_MUTEXES                        1
#define configQUEUE_REGISTRY_SIZE                8
#define configUSE_RECURSIVE_MUTEXES              1
#define configUSE_COUNTING_SEMAPHORES            1
#define configUSE_PORT_OPTIMISED_TASK_SELECTION  0
/* USER CODE BEGIN MESSAGE_BUFFER_LENGTH_TYPE */
/* Defaults to size_t for backward compatibility, but can be changedif lengths will always be less than the number of bytes in a size_t. */
#define configMESSAGE_BUFFER_LENGTH_TYPE         size_t
/* USER CODE END MESSAGE_BUFFER_LENGTH_TYPE *//* Co-routine definitions. */
#define configUSE_CO_ROUTINES                    0
#define configMAX_CO_ROUTINE_PRIORITIES          ( 2 )/* Software timer definitions. */
#define configUSE_TIMERS                         1
#define configTIMER_TASK_PRIORITY                ( 2 )
#define configTIMER_QUEUE_LENGTH                 10
#define configTIMER_TASK_STACK_DEPTH             256/* CMSIS-RTOS V2 flags */
#define configUSE_OS2_THREAD_SUSPEND_RESUME  1
#define configUSE_OS2_THREAD_ENUMERATE       1
#define configUSE_OS2_EVENTFLAGS_FROM_ISR    1
#define configUSE_OS2_THREAD_FLAGS           1
#define configUSE_OS2_TIMER                  1
#define configUSE_OS2_MUTEX                  1/* 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
#define INCLUDE_xTaskGetSchedulerState       1
#define INCLUDE_xTimerPendFunctionCall       1
#define INCLUDE_xQueueGetMutexHolder         1
#define INCLUDE_uxTaskGetStackHighWaterMark  1
#define INCLUDE_xTaskGetCurrentTaskHandle    1
#define INCLUDE_eTaskGetState                1/** The CMSIS-RTOS V2 FreeRTOS wrapper is dependent on the heap implementation used* by the application thus the correct define need to be enabled below*/
#define USE_FreeRTOS_HEAP_4/* Cortex-M specific definitions. */
#ifdef __NVIC_PRIO_BITS/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */#define configPRIO_BITS         __NVIC_PRIO_BITS
#else#define configPRIO_BITS         4
#endif/* The lowest interrupt priority that can be used in a call to a "set priority"
function. */
#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY   15/* The highest interrupt priority that can be used by any interrupt service
routine that makes calls to interrupt safe FreeRTOS API functions.  DO NOT CALL
INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER
PRIORITY THAN THIS! (higher priorities are lower numeric values. */
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5/* Interrupt priorities used by the kernel port layer itself.  These are generic
to all Cortex-M ports, and do not rely on any particular library functions. */
#define configKERNEL_INTERRUPT_PRIORITY 		( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 	( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) )/* Normal assert() semantics without relying on the provision of an assert.h
header file. */
/* USER CODE BEGIN 1 */
#define configASSERT( x ) if ((x) == 0) {taskDISABLE_INTERRUPTS(); for( ;; );}
/* USER CODE END 1 *//* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
standard names. */
#define vPortSVCHandler    SVC_Handler
#define xPortPendSVHandler PendSV_Handler/* IMPORTANT: After 10.3.1 update, Systick_Handler comes from NVIC (if SYS timebase = systick), otherwise from cmsis_os2.c */#define USE_CUSTOM_SYSTICK_HANDLER_IMPLEMENTATION 1/* USER CODE BEGIN Defines */
/* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */
/* USER CODE END Defines */#endif /* FREERTOS_CONFIG_H */
  • 此时进行编译,会有如下错误, 原因是工程中出现了两组SVC_Handler, PendSV_Handler, 我们原本工程中有一份,freertos又提供了一份,事实上freertos提供了三组函数供svc异常,PendSV异常,和SysTick中断调用的,函数名字是 void xPortPendSVHandler( void ); void xPortSysTickHandler( void ); void vPortSVCHandler( void );FreeRTOSConfig.h 中定义了如下宏,在预编译阶段就把freertos提供的函数名改成 SVC_Handler, PendSV_Handler了考虑到stm32的HAL库的 HAL_IncTick() 也用到了SysTick中断,所以不能将 void xPortSysTickHandler( void ) 直接改名为 SysTick_Handler,而是在 SysTick_Handler 中调用一下 xPortSysTickHandler

    #define vPortSVCHandler    SVC_Handler
    #define xPortPendSVHandler PendSV_Handler
    

    在这里插入图片描述

    总之,把原本工程中的SVC_Handler, PendSV_Handler函数删了,在 SysTick_Handler 中调用 xPortSysTickHandlerHAL_IncTick()

  • 至此移植已经完成了,编译无错误,无警告。
    在这里插入图片描述

3. 移植需要注意的点

  • 移植的过程就是把官方写好的代码加到自己的工程中,主要就是选择移植文件时要选择对应编译器和架构的移植文件。
  • 硬件架构没什么可说的,应该都选不错。
  • 选择编译器据需要注意了,核心是选择的编译器要支持对应移植文件的内嵌汇编语法。
    • MDK编译工具链支持两个版本,v5和v6,编译器也由 armcc 变成了 armclang
      在这里插入图片描述
    • 如果使用v5编译器,选择 RVDS 目录下的文件
      在这里插入图片描述
    • 如果使用v6编译器,选择 GCC 目录下的文件,armclang 支持的内嵌汇编语法与 gcc 兼容
      在这里插入图片描述
http://www.yayakq.cn/news/858844/

相关文章:

  • 电子商务网站建设需求概述哈尔滨市人社app
  • 特色的南昌网站建设汽车门户网站建设
  • 自己做导航网站团购网站模板免费下载
  • 广东双语网站建设多少钱手机网站大全12345
  • 做网站为什么一定要去国外pc软件开发工具
  • 网站导航漂浮代码嘉兴seo网站推广
  • 电商网站建设与维护怎么做软文链接打开后是自定义网站
  • 都有什么网站住房和城乡建设部简称
  • 定制网站开发站长seo
  • 创建网站流程图微信网站备案
  • 怎么做动漫原创视频网站多媒体展厅公司
  • 软件用户界面设计大连网络seo公司
  • app ui设计欣赏 网站wordpress首页制作
  • 江桥网站建设企业网站建设带后台
  • wp网站搬家教程策划书怎么写
  • 搬家公司网站模板为什么做网站要用谷歌浏览器
  • 动漫网站开发需求分析建设网站的必要性
  • 游戏推广员招聘公众号关键词排名优化
  • 美食网站怎样做锅包肉wordpress建站和使用
  • 有什么网站可以做宣传外国做美食视频网站
  • 服装加盟的网站建设广东东莞直播基地
  • 网站做app有什么意义上海做网站收费
  • 旅行社销售网站建设方案济宁网站建设 田振
  • 国际网站建设招标做公司中文网站需要注意什么
  • 网站内部优化是什么专门写文章的网站
  • 手机网站建设平台注册账号怎么弄
  • 电商网站开发系统架构在网站上投放广告
  • wordpress本地网站搭建整套课程网站建设比较好
  • php网站模板怎么修改前端网站demo
  • 网站建设及报价wordpress主题零基础