资源简介
我们的物联网智能鱼缸使用STM32F103ZET6作为主控芯片,有热感应LED氛围灯,人到灯开,人走后20秒后自动熄灭。STM32移植了uC/OS-III实时操作系统,让程序运行在uC/OS操作系统上,实现多任务的功能。使用一块4.3寸的TFTLCD的屏幕作为触屏控制/显示,采用EMWIN技术,使人机操作界面更加人性化和绚丽。除了人机交互之外,还可以在微信公众号使用语音/文字指令进行控制,避免下载APP和Web操作不方便的问题。由于不同的模块要使用不同电压的电源,我们加装电源适配器,仅仅用一根220V电源线就可以完成供电。

代码片段和文件信息
/**************************************************************************//**
* @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 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\
目录 0 2019-09-01 15:41 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\
文件 130 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\config
文件 73 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\desc
文件 23 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\HEAD
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\
文件 478 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\applypatch-msg.sample
文件 896 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\commit-msg.sample
文件 3327 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\fsmonitor-watchman.sample
文件 189 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\post-update.sample
文件 424 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\pre-applypatch.sample
文件 1638 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\pre-commit.sample
文件 1492 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\prepare-commit-msg.sample
文件 1348 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\pre-push.sample
文件 4898 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\pre-reba
文件 544 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\pre-receive.sample
文件 3610 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\hooks\update.sample
文件 65 2019-09-01 15:41 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\index
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\info\
文件 240 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\info\exclude
目录 0 2019-09-01 15:41 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\ob
目录 0 2019-09-01 15:41 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\ob
文件 15 2019-09-01 15:41 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\ob
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\ob
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\ob
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\refs\
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\refs\heads\
目录 0 2019-09-01 15:40 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\.git\refs\tags\
目录 0 2019-09-01 14:57 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\CORE\
文件 17273 2010-06-07 10:25 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 物联网智能鱼缸\物联网智能鱼缸(4.3寸屏)代码\CORE\core_cm3.h
............此处省略439个文件信息
相关资源
- bp神经网络源代码,可直接运行
- 开源1A锂电池充电板TP4056原理图+PCB
- 随机森林R语言代码
- 计算机图形学 边填充算法实现代码
- 直流无刷电机方波驱动 stm32 例程代码
- 仿知乎界面小程序源代码
- 贪吃蛇源代码.fla
- 联想W520/T520笔记本电脑电路原理图
- 周立功开发板ProASIC3实验-syn_FIFO代码
- 三星DDR800内存条PCB文件和原理图
- IMX385驱动代码.zip
- dotnet 写字板 实验 源代码 不好请要不
- 图像二维小波变换的实现源代码
- 八三编码器设计 VHDL代码 简单,包附
- linux应用层的华容道游戏源代码
- 交通咨询模拟系统完整代码
- http请求状态代码
- 数值分析所有实验代码
- NE555电路应用原理图及PCB
- 网上拍卖系统完整源代码
- 音乐代码转换软件 单片机编程时用
- CSMA/CD等动画演示加源代码
- silicon lab公司的收音IC SI47XX全套开发工
- 用51单片机实现G代码翻译
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
- web班级网站设计代码
- 光立方制作(原理图 源程序 LED搭接方
- 38k单片机红外发送代码、keil
- STM32F103 串口程序(完整版)
评论
共有 条评论