资源简介
基于STM32f10的模拟鼠标移动,用到了ADC,USART模块,DMA原理
代码片段和文件信息
/**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.0.0
* @date 04/06/2009
* @brief This file provides all the miscellaneous firmware functions.
******************************************************************************
* @copy
*
* 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 2009 STMicroelectronics
*/
/* Includes ------------------------------------------------------------------*/
#include “misc.h“
/** @addtogroup 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 peripheral according to the specified
* parameters in the NVIC_InitStruct.
* @param NVIC_InitStruct: pointer to a NVIC_InitTypeDef structure
* that contains t
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4951 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\misc.h
文件 19585 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_adc.h
文件 7373 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_bkp.h
文件 14289 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_can.h
文件 3213 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_conf.h
文件 1980 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_crc.h
文件 10271 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_dac.h
文件 2980 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_dbgmcu.h
文件 18790 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_dma.h
文件 5833 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_exti.h
文件 14446 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_flash.h
文件 17276 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_fsmc.h
文件 15221 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_gpio.h
文件 16923 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_i2c.h
文件 3677 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_iwdg.h
文件 4201 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_pwr.h
文件 16258 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_rcc.h
文件 3659 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_rtc.h
文件 18598 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_sdio.h
文件 14896 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_spi.h
文件 48768 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_tim.h
文件 14483 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_usart.h
文件 2785 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\inc\stm32f10x_wwdg.h
文件 6874 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\misc.c
文件 46634 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_adc.c
文件 8248 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_bkp.c
文件 30960 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_can.c
文件 3340 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_crc.c
文件 13723 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_dac.c
文件 4310 2013-02-26 13:20 10 USB模拟鼠标移动\FWlib\SRC\stm32f10x_dbgmcu.c
............此处省略215个文件信息
相关资源
- stm32f013 OLED 屏幕和粉尘传感器串口
- STM32C8T6通过扫描二维码进行智能开锁
- STM32F1指南者步进电机驱动
- 基于STM32的智能浇花系统(带ucosiii操
- 基于STM32F103的智能浇花系统
- 四路驱动小车stm32f103源码
- STM32控制SIM800c,sim900a,接收短信,
- STM32F103读取ds18b20温度传感器
- stm32f103iic读取AT24XX全系eeprom
- 基于stm32+onenet的智能花盆
- stm32 输出3相spwm
- 分享一个0.96的oled显示驱动,软件模拟
- STM32f334的库函数模板
- 单极性SPWM波的产生
- stm32f407+ov5640颜色识别与追踪
- 基于stm32辉光管时钟pcb
- 用stm32精确控制步进电机角度的程序
- 基于stm32的多路pwm的实现、9路pwm源程
- 使用STM32设计HMI综述
- AT24Cxx程序源码——stm32
- STM32使用串口中断接收字符串.zip
- AS608指纹识别系统课程设计
- 数字电位器ad5160
- 24位高精度ad cs5532 程序代码 stm32 已调
- STM32双极性SPWM程序代码
- STM32 5路ad采集 串口输出
- 基于STM32的自动喂养机控制系统.pdf
- 电子-库函数版本适合战舰V3和精英S
- 基于STM32和ET1100的无刷直流电机控制器
- 基于stm32f1系列的直流电机调速
评论
共有 条评论