资源简介
STM32 STM32F103C8T6 三星S6D05A1_TFTLCD_320480_液晶显示器 SPI驱动例程, 专用于驱动三星S6D05A1为核心的TFTLCD_320480_液晶显示器, 运行于SPI模式的驱动例程, 有该显示器的购买淘宝店铺等信息, 例程实现了横向显示和纵向显示, 实现了显示图片/显示字符/画点/画方块等基本功能
代码片段和文件信息
/**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.6.1
* @date 05-March-2012
* @brief This file provides all the miscellaneous firmware functions (add-on
* to CMSIS functions).
******************************************************************************
* @attention
*
* © COPYRIGHT 2012 STMicroelectronics
*
* Licensed under MCD-ST Liberty SW License Agreement V2 (the “License“);
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.st.com/software_license_agreement_liberty_v2
*
* 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.
*
******************************************************************************
*/
/* 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 accordin
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 26180 2018-11-30 15:21 Sagahds_20190325_STM32_TFTLCD_V0.1\cortexm3_macro.lst
文件 148813 2019-03-26 11:21 Sagahds_20190325_STM32_TFTLCD_V0.1\output\Sagahds.hex
文件 102594 2019-03-26 09:31 Sagahds_20190325_STM32_TFTLCD_V0.1\Pic.h
文件 107545 2019-03-26 11:21 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.map
文件 51744 2018-07-31 17:59 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.plg
文件 479 2018-07-31 17:53 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.sct
....... 134206 2019-03-26 11:22 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvgui.Administrator
文件 71194 2018-12-03 13:51 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvguix.Administrator
....... 134212 2019-03-26 11:19 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvgui_Administrator.bak
....... 21203 2019-03-26 11:22 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvopt
文件 21881 2018-12-03 13:51 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvoptx
....... 21216 2019-03-25 14:59 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvproj
文件 22004 2018-12-03 13:48 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds.uvproj.saved_uv4
文件 68059 2019-03-26 11:21 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds_Target 1.dep
....... 21209 2019-03-26 11:19 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds_uvopt.bak
....... 21041 2018-12-10 13:35 Sagahds_20190325_STM32_TFTLCD_V0.1\Sagahds_uvproj.bak
文件 40529 2019-03-26 11:20 Sagahds_20190325_STM32_TFTLCD_V0.1\startup_stm32f10x_md.lst
文件 12895 2017-05-12 23:41 Sagahds_20190325_STM32_TFTLCD_V0.1\startup_stm32f10x_md.s
文件 7181 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\misc.c
文件 9117 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\misc.h
文件 47336 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_adc.c
文件 21825 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_adc.h
文件 8598 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_bkp.c
文件 7690 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_bkp.h
文件 45238 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_can.c
文件 27694 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_can.h
文件 11791 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_cec.c
文件 6708 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_cec.h
文件 3482 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_crc.c
文件 2297 2012-03-19 17:29 Sagahds_20190325_STM32_TFTLCD_V0.1\stm32f10x\stm32f10x_crc.h
............此处省略75个文件信息
- 上一篇:静态企业站模板源码合集
- 下一篇:中国通信企业协会网络安全人员能力认证培训课件
相关资源
- 正点原子STM32F407探索者PCB图+原理图
- 基于STM32的智能管家门控系统设计与实
- STM32F407 USB Device HID Full Speed 例程
- 程序是STM32和陀螺仪的I2C通信程序
- 零死角玩转STM32(完整打包)
- 带显示的MAX31865读取PT200测温stm32平台
- 舵机控制TIM1
- STM32F207数据手册官方版
- 基于STM32ZET6正点原子战舰板的IIC接口
- DAC8562配套资料
- stm32原理图,pcb图
- STM32 pcb图带wifi接口,rc522接口
- stm32f10x中文参考手册231483
- 项目综合:stm32机械臂完整程序
- ina226 stm32f4
- stm32F103GRBL系统脱机移植带屏幕控制
- stm32 寄存器版开发教程
- STM32 人脸识别 战舰开发板 测试通过
- 基于STM32F104的寻迹避障小车设计源码
- 基于STM32F4的US100超声波传感器测距
- 基于stm32的字符识别卡在内存上了
- 机智云APP控制STM32战舰V3的LED和蜂鸣器
- STM32F407信号发生器整体代码.zip
- 德飞莱STM32F103ZET6的配套程序
- stm32驱动鹰眼OV7725源码与所有的资料
- STM32L1XX最新固件库
- STM32.rar
- 基于stm32的触摸屏电子秤
- 基于STM32F429的语音识别交互系统
- STM32从入门到精通
评论
共有 条评论