资源简介
压缩包中有一个已经在KEIL5开发环境下调试通过的STM32工程文件,其中对工程各项设置进行了正确配置,可以直接下载到板子上。main文件中对常用外设USART、SPI、I2C、NVIC、EXIT、TIM(定时、输入捕获、输出比较)、SYSTICK编写了相应的配置函数,需要时可直接调用。代码格式严谨,注释丰富,可移植性强,是本人学习STM32长期整理的成果。
代码片段和文件信息
/*
* Copyright (c) 2013-2018 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an AS IS BASIS WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* -----------------------------------------------------------------------------
*
* $Revision: V5.1.0
*
* Project: CMSIS-RTOS RTX
* title: RTX Configuration
*
* -----------------------------------------------------------------------------
*/
#include “cmsis_compiler.h“
#include “rtx_os.h“
// OS Idle Thread
__WEAK __NO_RETURN void osRtxIdleThread (void *argument) {
(void)argument;
for (;;) {}
}
// OS Error Callback function
__WEAK uint32_t osRtxErrorNotify (uint32_t code void *object_id) {
(void)object_id;
switch (code) {
case osRtxErrorStackUnderflow:
// Stack overflow detected for thread (thread_id=object_id)
break;
case osRtxErrorISRQueueOverflow:
// ISR Queue overflow detected when inserting object (object_id)
break;
case osRtxErrorTimerQueueOverflow:
// User Timer Callback Queue overflow detected for timer (timer_id=object_id)
break;
case osRtxErrorClibSpace:
// Standard C/C++ library libspace not available: increase OS_THREAD_LIBSPACE_NUM
break;
case osRtxErrorClibMutex:
// Standard C/C++ library mutex initialization failed
break;
default:
// Reserved
break;
}
for (;;) {}
//return 0U;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-01-31 21:16 18 TIM定时 输入捕获 输出比较\
目录 0 2019-01-23 13:51 18 TIM定时 输入捕获 输出比较\DebugConfig\
文件 2403 2017-11-23 15:41 18 TIM定时 输入捕获 输出比较\DebugConfig\SRAM_STM32F103VC_1.0.0.dbgconf
文件 2403 2017-11-23 15:41 18 TIM定时 输入捕获 输出比较\DebugConfig\Target1_STM32F103VC_1.0.0.dbgconf
文件 2403 2017-11-23 15:41 18 TIM定时 输入捕获 输出比较\DebugConfig\Target_1_STM32F103VC_1.0.0.dbgconf
文件 339 2019-01-31 21:15 18 TIM定时 输入捕获 输出比较\EventRecorderStub.scvd
目录 0 2019-01-23 13:51 18 TIM定时 输入捕获 输出比较\Listings\
文件 164391 2019-01-31 21:16 18 TIM定时 输入捕获 输出比较\Listings\3.map
文件 1616166 2019-01-10 15:17 18 TIM定时 输入捕获 输出比较\Listings\DMA_STM32F10x.lst
文件 1589877 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\GPIO_STM32F10x.lst
文件 1740283 2019-01-10 15:17 18 TIM定时 输入捕获 输出比较\Listings\USART_STM32F10x.lst
文件 109389 2019-01-10 15:17 18 TIM定时 输入捕获 输出比较\Listings\dma_stm32f10x.i
文件 46926 2019-01-10 15:15 18 TIM定时 输入捕获 输出比较\Listings\dma_stm32f10x.txt
文件 102421 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\gpio_stm32f10x.i
文件 22603 2019-01-10 15:35 18 TIM定时 输入捕获 输出比较\Listings\gpio_stm32f10x.txt
文件 101429 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\main.i
文件 1624348 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\main.lst
文件 8042 2019-01-10 15:35 18 TIM定时 输入捕获 输出比较\Listings\main.txt
文件 91354 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\misc.i
文件 1580241 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\misc.lst
文件 10121 2019-01-10 15:35 18 TIM定时 输入捕获 输出比较\Listings\misc.txt
文件 53843 2019-01-17 17:04 18 TIM定时 输入捕获 输出比较\Listings\startup_stm32f10x_hd.lst
文件 98664 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_gpio.i
文件 1616618 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_gpio.lst
文件 33421 2019-01-10 15:35 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_gpio.txt
文件 104972 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_rcc.i
文件 1663063 2019-01-10 15:39 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_rcc.lst
文件 47820 2019-01-10 15:35 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_rcc.txt
文件 105732 2019-01-10 15:17 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_usart.i
文件 1648276 2019-01-10 15:17 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_usart.lst
文件 50371 2019-01-10 15:15 18 TIM定时 输入捕获 输出比较\Listings\stm32f10x_usart.txt
............此处省略160个文件信息
- 上一篇:海马玩模拟器安装程序
- 下一篇:emoji png 大图
相关资源
- STM32-CS1237&HX711;.zip
- STM32 ADS1115驱动
- STM32串口环形队列
- STM32板LCD1602的配置代码
- 语音识别模块LD3320驱动程序stm32
- stm32NTC温度测试
- STM32 SD卡 记录传感器数据
- GD32E103RB.zip
- 基于STM32的数据采集+心率检测仪原理
- 基于stm32的太阳能项目
- stm32f103c8系统板 原理图 pcb
- STM32开发板上实现实时的时钟显示
- 墨水屏 stm32f103 库 修改版带注释
- 基于STM32F103的PT100测温程序
- 颜色传感器 stm32代码
- 基于stm32f407输入捕获实验
- stm32f407+ov7725
- stm32f103c8t6最小系统板驱动MPU6050模块
- stm32 测量频率1
- MPU9250+STM32F103
- 基于STM32F407(1HZ~3MHZ)频率测量2%误差
- stm32f103C8T6 MCP3204程序代码
- stm32 MPU6050 OLED显示,绝对完整
- stm32f103 CAN-RS232/RS485
- TCS3200通过串口查看颜色识别结果带接
- 红外遥控控制智能小车前后左右移动
- stm32f103竞赛板的一个流水灯程序,是
- STM32F103dsp库
- 基于STM32F103系列ov7670获取图像控制量
- STM32F207的U盘_USB_IAP升级程序 Bootloade
评论
共有 条评论