资源简介
主要实现矩阵键盘的功能。矩阵键盘使用PB8到PB15引脚,其中,PB8到PB11固定为
推挽输出,PB12到PB15固定为下拉输入。即,无键按下时,对应PB12到PB15为0,有键按下时,PB12到PB15中,
对应的引脚为高。
代码片段和文件信息
/**************************************************************************//**
* @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 2013-09-26 10:52 my矩阵键盘\
目录 0 2013-09-26 10:52 my矩阵键盘\CORE\
文件 17273 2010-06-07 10:25 my矩阵键盘\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 my矩阵键盘\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 my矩阵键盘\CORE\startup_stm32f10x_hd.s
文件 12765 2011-03-10 10:52 my矩阵键盘\CORE\startup_stm32f10x_md.s
目录 0 2013-09-26 10:52 my矩阵键盘\HARDWARE\
目录 0 2013-09-26 10:52 my矩阵键盘\HARDWARE\KEY\
文件 2902 2013-08-29 09:53 my矩阵键盘\HARDWARE\KEY\key.c
文件 384 2013-08-29 10:34 my矩阵键盘\HARDWARE\KEY\key.h
目录 0 2013-09-26 10:52 my矩阵键盘\HARDWARE\LED\
文件 1375 2012-03-06 00:15 my矩阵键盘\HARDWARE\LED\led.c
文件 264 2012-03-06 00:16 my矩阵键盘\HARDWARE\LED\led.h
目录 0 2013-09-26 10:52 my矩阵键盘\STM32F10x_FWLib\
目录 0 2013-09-26 10:52 my矩阵键盘\STM32F10x_FWLib\inc\
文件 8982 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\misc.h
文件 21690 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_adc.h
文件 7555 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_bkp.h
文件 27559 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_can.h
文件 6573 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_cec.h
文件 2162 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_crc.h
文件 15233 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_dac.h
文件 3818 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h
文件 20754 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_dma.h
文件 6824 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_exti.h
文件 25445 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_flash.h
文件 27016 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_fsmc.h
文件 20175 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_gpio.h
文件 30029 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_i2c.h
文件 3828 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_iwdg.h
文件 4383 2011-03-10 10:47 my矩阵键盘\STM32F10x_FWLib\inc\stm32f10x_pwr.h
............此处省略57个文件信息
相关资源
- STM32F103 AM2302温湿度模块驱动例程
- STM32F103 NRF24L01无线通讯模块驱动例程
- 北航研究生矩阵理论期末考题
- 通过减少问题规模形式,做并行计算
- DHT11与STM32F103ZET6
- ARM汇编实现矩阵转置
- stm32f103的PCF8563驱动代码
- STM32并口、串口驱动12864
- STM32F1+PS2+Serial+PWM (KEIL5)
- STM32f103zet6.Schlib 器件原理图 封装 Al
- 基于stm32的血压算法
- STM32F103串口DMA接收
- 易语言 键盘鼠标后台操作模块.ec
- STM32 DMA中断模式下ADC多通道数据采集
- 通过PID算法控制STM32的PWM输出
- 1602液晶可靠的4位数据线方式驱动_基
- OpenGL模型视图矩阵演示
- 嵌入式平台 STM32 libqrencode 移植二维码
- 我国31个省市间的地理距离
- STM32Pack支持包
- 战舰stm32蓝牙开发代码
- 基于STM32的VL53L0X程序源码
- STM32F103C8T6核心板之配套程序源码 -
- 简单的数字虚拟键盘
- 4*4矩阵键盘(方法2) STM32F103
- stm32f105双CAN协议盒PCB板适用于车载
- STM32_DS1302
- STM32HAL库使用NTC热敏电阻读取温度代码
- 矩阵QR分解 Givens变换 Householder变换
- 实验5 外部中断实验.zip
评论
共有 条评论