资源简介
void USART3_IRQHandler(void) //串口数据处理
{
u8 temp; //定义接受数据变量
if(USART_GetITStatus(USART3,USART_IT_RXNE))
{
temp = USART_ReceiveData(USART3);
if (temp==0x55)GPIO_ResetBits(GPIOC,GPIO_Pin_11); //串口收到十六进制55,输出为0
if (temp==0xAA)GPIO_SetBits(GPIOC,GPIO_Pin_11); //串口收到十六进制AA,输出为1
if (temp==0x66)GPIO_ResetBits(GPIOC,GPIO_Pin_12); //串口收到十六进制66,输出为0
if (temp==0xBB)GPIO_SetBits(GPIOC,GPIO_Pin_12); //串口收到十六进制BB,输出为1
if (temp==0x77)GPIO_ResetBits(GPIOD,GPIO_Pin_2); //串口收到十六进制77,输出为0
if (temp==0xCC)GPIO_SetBits(GPIOD,GPIO_Pin_2); //串口收到十六进制CC,输出为1
}
}
代码片段和文件信息
/**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the miscellaneous firmware functions (add-on
* to CMSIS functions).
******************************************************************************
* @attention
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* © COPYRIGHT 2011 STMicroelectronics
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include “misc.h“
/** @addtogroup STM32F10x_StdPeriph_Driver
* @{
*/
/** @defgroup MISC
* @brief MISC driver modules
* @{
*/
/** @defgroup MISC_Private_TypesDefinitions
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Defines
* @{
*/
#define AIRCR_VECTKEY_MASK ((uint32_t)0x05FA0000)
/**
* @}
*/
/** @defgroup MISC_Private_Macros
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Variables
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_FunctionPrototypes
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Functions
* @{
*/
/**
* @brief Configures the priority grouping: pre-emption priority and subpriority.
* @param NVIC_PriorityGroup: specifies the priority grouping bits length.
* This parameter can be one of the following values:
* @arg NVIC_PriorityGroup_0: 0 bits for pre-emption priority
* 4 bits for subpriority
* @arg NVIC_PriorityGroup_1: 1 bits for pre-emption priority
* 3 bits for subpriority
* @arg NVIC_PriorityGroup_2: 2 bits for pre-emption priority
* 2 bits for subpriority
* @arg NVIC_PriorityGroup_3: 3 bits for pre-emption priority
* 1 bits for subpriority
* @arg NVIC_PriorityGroup_4: 4 bits for pre-emption priority
* 0 bits for subpriority
* @retval None
*/
void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup)
{
/* Check the parameters */
assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup));
/* Set the PRIGROUP[10:8] bits according to NVIC_PriorityGroup value */
SCB->AIRCR = AIRCR_VECTKEY_MASK | NVIC_PriorityGroup;
}
/**
* @brief Initializes the NVIC p
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 260120 2018-06-06 19:56 stm32f10x_gpio.o
文件 273188 2018-06-06 19:56 stm32f10x_it.crf
文件 653 2018-06-06 19:56 stm32f10x_it.d
文件 289304 2018-06-06 19:56 stm32f10x_it.o
文件 245082 2018-06-06 19:56 stm32f10x_rcc.crf
文件 469 2018-06-06 19:56 stm32f10x_rcc.d
文件 264584 2018-06-06 19:56 stm32f10x_rcc.o
文件 282265 2018-06-06 19:56 stm32f10x_tim.crf
文件 469 2018-06-06 19:56 stm32f10x_tim.d
文件 310012 2018-06-06 19:56 stm32f10x_tim.o
文件 250443 2018-06-06 19:56 stm32f10x_usart.crf
文件 493 2018-06-06 19:56 stm32f10x_usart.d
文件 270984 2018-06-06 19:56 stm32f10x_usart.o
文件 239201 2018-06-06 19:56 system_stm32f10x.crf
文件 446 2018-06-06 19:56 system_stm32f10x.d
文件 254168 2018-06-06 19:56 system_stm32f10x.o
文件 10308 2008-09-21 13:21 ASM\cortexm3_macro.s
文件 15761 2010-04-23 10:40 ASM\startup_stm32f10x_cl.s
文件 15503 2011-03-10 10:52 ASM\startup_stm32f10x_hd.s
文件 12376 2011-03-10 10:52 ASM\startup_stm32f10x_ld.s
文件 13651 2010-04-23 10:40 ASM\startup_stm32f10x_ld_vl.s
文件 12765 2011-03-10 10:52 ASM\startup_stm32f10x_md.s
文件 14068 2010-04-23 10:40 ASM\startup_stm32f10x_md_vl.s
文件 15950 2010-04-23 10:40 ASM\startup_stm32f10x_xl.s
文件 9630 2009-11-21 17:22 ASM\stm32f10x_startup.s
文件 6956 2015-12-10 17:06 DebugConfig\RS-232_____STM32F103VE_1.0.0.dbgconf
文件 6956 2015-12-10 17:06 DebugConfig\RS-232_____STM32F103VF_1.0.0.dbgconf
文件 6956 2015-12-10 17:06 DebugConfig\RS-232_____STM32F103VG_1.0.0.dbgconf
文件 8982 2011-03-10 10:47 Lib\inc\misc.h
文件 21690 2011-03-10 10:47 Lib\inc\stm32f10x_adc.h
............此处省略96个文件信息
相关资源
- 基于stm32的单相逆变代码可调压调频
- 基于STM32C8t6实现的温度控制系统
- stm32GPIO模拟spi驱动NRF2401
- STM32程序。多串口。DMA方式。C代码
- STM32F407+LWIP+DP83848+多端口
- 基于stm32的lcd1602
- STM32F103C8舵机控制程序,原创支持12舵
- STM32驱动8位并口ILI9225G彩屏
- stm32f429+FATFS+SD卡项目模版
- STM32F746工程模板
- keil 4 stm32 液晶显示正弦波
- stm32f4 dcmi连接OV2640串口发送
- lcd STM32 SPI三线通信驱动
- STM32F1读取SBUS接收机数据
- 基于STM32F103的循迹避障智能小车.zip
- 模拟电磁曲射炮STM32代码.zip
- STM32驱动BH1750环境光强度传感器(GY
- RFID_RC522战舰程序
- STM32fF103ZET6读取max30100心率传感器值
- 基于STM32F103的数据采集系统设计
- stm32+MPU6050+GPS+SD卡读写+ad采集+串口输
- STM32f103多串口程序 32单片机程序 亲测
- STM32使用SHT10进行温湿度测量
- 单片机毕设stm32,脉搏检测智能运动装
- STM32F1 做的MP3播放器
- 基于STM32F103+ADS1292的心率实时显示串口
- 全桥双极性带死区互补SPWM基于STM32F
- STM32 SDIO方式读写SD卡
- amg8833+openmv热成像人脸跟随测温云台
- stm32f407 ili9341屏幕驱动 HAL库 带FreeR
评论
共有 条评论