资源简介
本实验是学习移植FreeRTOS的代码,是作为一个初学这,参考正点原子文档,自行尝试移植后,成功调通的代码。在调试过程中遇到了一些问题,想作为一次记录保存这份代码。
代码片段和文件信息
/**************************************************************************//**
* @file core_cm3.c
* @brief CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (ARM) is supplying this software for use with Cortex-M
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* @par
* THIS SOFTWARE IS PROVIDED “AS IS“. NO WARRANTIES WHETHER EXPRESS IMPLIED
* OR STATUTORY INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
* ARM SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
* CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
*
******************************************************************************/
#include
/* define compiler specific symbols */
#if defined ( __CC_ARM )
#define __ASM __asm /*!< asm keyword for ARM Compiler */
#define __INLINE __inline /*!< inline keyword for ARM Compiler */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for IAR Compiler */
#define __INLINE inline /*!< inline keyword for IAR Compiler. Only avaiable in High optimization mode! */
#elif defined ( __GNUC__ )
#define __ASM __asm /*!< asm keyword for GNU Compiler */
#define __INLINE inline /*!< inline keyword for GNU Compiler */
#elif defined ( __TASKING__ )
#define __ASM __asm /*!< asm keyword for TASKING Compiler */
#define __INLINE inline /*!< inline keyword for TASKING Compiler */
#endif
/* ################### Compiler specific Intrinsics ########################### */
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/* ARM armcc specific functions */
/**
* @brief Return the Process Stack Pointer
*
* @return ProcessStackPointer
*
* Return the actual process stack pointer
*/
__ASM uint32_t __get_PSP(void)
{
mrs r0 psp
bx lr
}
/**
* @brief Set the Process Stack Pointer
*
* @param topOfProcStack Process Stack Pointer
*
* Assign the value ProcessStackPointer to the MSP
* (process stack pointer) Cortex processor register
*/
__ASM void __set_PSP(uint32_t topOfProcStack)
{
msr psp r0
bx lr
}
/**
* @brief Return the Main Stack Pointer
*
* @return Main Stack Pointer
*
* Return the curren
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-12-27 11:30 CORE\
文件 17273 2010-06-07 10:25 CORE\core_cm3.c
文件 85714 2011-02-09 14:59 CORE\core_cm3.h
文件 15503 2011-03-10 10:52 CORE\startup_stm32f10x_hd.s
目录 0 2019-12-27 16:11 FreeRTOS\
文件 13177 2019-05-11 09:24 FreeRTOS\croutine.c
文件 26791 2019-05-11 09:24 FreeRTOS\event_groups.c
目录 0 2019-12-30 12:18 FreeRTOS\include\
文件 26539 2019-05-11 09:24 FreeRTOS\include\croutine.h
文件 7574 2019-05-11 09:24 FreeRTOS\include\deprecated_definitions.h
文件 30435 2019-05-11 09:24 FreeRTOS\include\event_groups.h
文件 43416 2019-12-30 12:18 FreeRTOS\include\FreeRTOS.h
文件 43416 2019-12-27 16:08 FreeRTOS\include\FreeRTOS.h~RF2eb2d5.TMP
文件 43416 2019-05-11 09:24 FreeRTOS\include\FreeRTOS.h~RF6769983.TMP
文件 43416 2019-12-27 15:39 FreeRTOS\include\FreeRTOS.h~RF67d9a6c.TMP
文件 43416 2019-12-27 15:46 FreeRTOS\include\FreeRTOS.h~RF6905ae6.TMP
文件 43416 2019-12-27 16:06 FreeRTOS\include\FreeRTOS.h~RF692265f.TMP
文件 18590 2019-05-11 09:24 FreeRTOS\include\list.h
文件 38080 2019-05-13 10:58 FreeRTOS\include\message_buffer.h
文件 13760 2019-05-11 09:24 FreeRTOS\include\mpu_prototypes.h
文件 9221 2019-05-11 09:24 FreeRTOS\include\mpu_wrappers.h
文件 6718 2019-05-11 09:24 FreeRTOS\include\portable.h
文件 5751 2019-05-11 09:24 FreeRTOS\include\projdefs.h
文件 61768 2019-05-11 09:24 FreeRTOS\include\queue.h
文件 48291 2019-05-11 09:24 FreeRTOS\include\semphr.h
文件 5965 2019-05-11 09:24 FreeRTOS\include\stack_macros.h
文件 6216 2019-05-11 09:24 FreeRTOS\include\StackMacros.h
文件 850 2019-02-18 01:38 FreeRTOS\include\stdint.readme
文件 38372 2019-05-11 09:24 FreeRTOS\include\stream_buffer.h
文件 102221 2019-05-11 09:24 FreeRTOS\include\task.h
文件 60873 2019-05-11 09:24 FreeRTOS\include\timers.h
............此处省略202个文件信息
- 上一篇:2017年全国百强县市统计数据、分布专题地图
- 下一篇:MPU9250DMPF103
相关资源
- S32K144使用printf格式化输出
- ESP32蓝牙架构官方
- STM32L476 FreeRTOS系统移植项目
- 中英两版FreeRTOS_Reference_Manual_V10.0.0.
- STM32F103_FREERTOS_MPU6050DMP_USART_Timer输入捕
- FreeRTOS 采样ADC-20200413.zip
- 基于SMT32 CubeMX的FreeRTOS工程创建及Fr
- STM32F767+FreeRTOS+LWIP移植成功(工程文件
- STM32+FreeRTOS+W5500+MQTT
- FreeRTOS移植工程
- stm32f407 ili9341屏幕驱动 HAL库 带FreeR
- STM32_F1系列FreeRTOS工程模板
- lwip_ping.rar
- STM32F407FreeRTOS开发手册V1_0
- FreeRTOS+内核实现与应用开发实战--基于
- FreeRTOS操作详细系统教程
- STM32F103C8T6+FreeRTOS+Keil5 代码亲测完美
- FreeRTOS和FreeMODBUS移植到STM32F407傻瓜教
- FreeRTOS V7.4.2(官方原版)
- stm32f103c8t6单片机 FreeRTOS源码
- stm32f103VET6-FreeRTOS-enc28j60-Lwip
- freertos 使用培训
- STM32F103ZET6+FreeRTOS V8.2.3+kfifo巧夺天工
- STM32F103C8T6_FreeRTOS_V10.0_RTC作为FreeRTOS时
- MT2503或FreeRTOS上移植MQTT协议
- LwIP+freertos工程LwIP2.1.2最新版本
- FreeRTOS串口收发控制LED.rar
- FreeRTOS入门手册_中文_无水印
- 华大FreeRTOS_LED.rar
- stm32f103+2路USART+SPI+CAN+FreeRTOS操作系统
评论
共有 条评论