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

推广员网站怎么做建设网站app

推广员网站怎么做,建设网站app,网站搜索建设,wordpress 关键词过滤1. 说明 freertos内核 非常精简#xff0c;代码量也很少#xff0c;官方也针对主流的编译器和内核准备好了移植文件#xff0c;所以 freertos 的移植是非常简单的#xff0c;很多工具#xff08;例如CubeMX#xff09;点点鼠标就可以生成一个 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.hextern 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 中调用 xPortSysTickHandler 和 HAL_IncTick() 。 至此移植已经完成了编译无错误无警告。 3. 移植需要注意的点 移植的过程就是把官方写好的代码加到自己的工程中主要就是选择移植文件时要选择对应编译器和架构的移植文件。硬件架构没什么可说的应该都选不错。选择编译器据需要注意了核心是选择的编译器要支持对应移植文件的内嵌汇编语法。 MDK编译工具链支持两个版本v5和v6,编译器也由 armcc 变成了 armclang。 如果使用v5编译器选择 RVDS 目录下的文件 如果使用v6编译器选择 GCC 目录下的文件armclang 支持的内嵌汇编语法与 gcc 兼容
http://www.dnsts.com.cn/news/166842.html

相关文章:

  • 查钓鱼网站创意网页设计图
  • 精准客户运营推广长沙网站优化公司
  • 品牌策划方案韶山百度seo
  • 哈尔滨模板建站公司推荐重庆专业做淘宝网站
  • 沈阳定制网站开发公司网上商城制作费用
  • 洛宁县东宋乡城乡建设局网站个人衣服定制店铺
  • 记事本可以做网站吗做正品的网站
  • 怎么看网站用的什么后台濮阳网站建设熊掌号
  • 旅游电商网站有哪些跨境电商平台有哪些公司
  • 网站移动端seo广州seo优化推广
  • ps里面怎么做网站对联广告全屏产品网站
  • 设计logo网站赚钱网站备案接口
  • 网站顶部下拉广告代码一个购物网站多少钱
  • 做资源网站违法吗旅游网站建设的意义
  • 汇算清缴在哪个网站做app外包公司推荐
  • 做网站引用没有版权的歌曲网站建设与更新
  • 网站是请网络公司制作的请问我该怎样获得并确定网站的所有权?安阳企业网站优化外包
  • 合肥公司网站开发青岛市城市建设管理局网站
  • 王业美三个字组成的子超级推荐的关键词怎么优化
  • 系统难还是网站设计难做郑州网站建设最好
  • dede中英文网站切换网站建设中的图片
  • 帝国cms 仿站 wordpress小程序哪家好
  • 网站怎么做电脑系统下载网络营销的效果是什么
  • 建设厅注册中心网站首页常州网站建设公司如何
  • 代做网站的公司v2ex wordpress
  • 成都青羊区建设局网站网站模板带后台 下载
  • 北京个人网站建设多少钱成都十大传媒公司
  • 全国设计网站公司外贸自建站 源码
  • 宁波网站建设推广平台免费制作小程序游戏
  • 上海网站seo排名优化中职网站建设与维护试卷