资源简介
基于stm32 通过串口实现蓝牙与手机蓝牙串口通信助手实现向蓝牙发送数据 然后再返回手机
代码片段和文件信息
/******************************************************************************
* @file: core_cm3.c
* @purpose: CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version: V1.10
* @date: 24. Feb. 2009
*----------------------------------------------------------------------------
*
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* ARM Limited (ARM) is supplying this software for use with Cortex-Mx
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* 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 armcc */
#define __INLINE __inline /*!< inline keyword for armcc */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for iarcc */
#define __INLINE inline /*!< inline keyword for iarcc. Only avaiable in High optimization mode! */
#define __nop __no_operation /*!< no operation intrinsic in iarcc */
#elif defined ( __GNUC__ )
#define __ASM asm /*!< asm keyword for gcc */
#define __INLINE inline /*!< inline keyword for gcc */
#endif
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/**
* @brief Return the Process Stack Pointer
*
* @param none
* @return uint32_t 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 uint32_t Process Stack Pointer
* @return none
*
* 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
*
* @param none
* @return uint32_t Main Stack Pointer
*
* Return the current value of the MSP (main stack pointer)
* Cortex processor register
*/
__ASM uint32_t __get_MSP(void)
{
mrs r0 msp
bx lr
}
/**
* @brief Set the Main Stack Pointer
*
* @param uint32_t Main Stack Pointer
* @return none
*
* Assign the value mainStackPointer to the MSP
* (main stack pointer) Cortex processor register
*/
__ASM void __set_MSP(uint32_t mainStackP
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-04-21 21:31 LANYA\
目录 0 2015-04-21 21:32 LANYA\CMSIS\
文件 16249 2015-03-21 19:11 LANYA\CMSIS\core_cm3.c
文件 42077 2015-03-21 19:11 LANYA\CMSIS\core_cm3.h
文件 530936 2015-03-21 19:11 LANYA\CMSIS\stm32f10x.h
文件 24166 2015-03-21 19:11 LANYA\CMSIS\system_stm32f10x.c
文件 2158 2015-03-21 19:11 LANYA\CMSIS\system_stm32f10x.h
目录 0 2015-04-21 21:32 LANYA\LIBRARY\
目录 0 2015-03-21 19:11 LANYA\LIBRARY\inc\
文件 4951 2015-03-21 19:11 LANYA\LIBRARY\inc\misc.h
文件 19558 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_adc.h
文件 7373 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_bkp.h
文件 14289 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_can.h
文件 6573 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_cec.h
文件 1980 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_crc.h
文件 10271 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_dac.h
文件 2980 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_dbgmcu.h
文件 18790 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_dma.h
文件 5833 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_exti.h
文件 14446 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_flash.h
文件 17276 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_fsmc.h
文件 15199 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_gpio.h
文件 16923 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_i2c.h
文件 3677 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_iwdg.h
文件 19194 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_nvic.h
文件 4201 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_pwr.h
文件 16258 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_rcc.h
文件 3659 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_rtc.h
文件 18598 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_sdio.h
文件 14896 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_spi.h
文件 48768 2015-03-21 19:11 LANYA\LIBRARY\inc\stm32f10x_tim.h
............此处省略80个文件信息
相关资源
- CSR内部培训资料
- IVT-Bluetooth
- 蓝牙实现视频文本传输
- 蓝牙2.0、2.1、3.0、4.0规范打包
- BCM94360CS2-WIN10-64.zip
- RTL8723BU芯片的 WIFI 和 蓝牙的 Linux 驱动
- ble2until.zip
- 实现蓝牙传输文件源代码
- 短距离无线通信及组网技术
- nordic蓝牙抓包工具以及教程
- 蓝牙4.0BLE开发完全手册( 高清书签版
- 基于STM32单片机全向遥控机器人的设计
- 蓝牙核心规范5.1版本
- as蓝牙串口助手源码
- 空时无线通信导论
- BCM943602CS WLAN and Bluetooth
- 无线通信 第二版 课后习题答案
- nrf51822青风系列
- 大话无线通信 .高清版
- PC电脑蓝牙管理软件IVT BlueSoleil
- SmartRF_Packet_Sniffer_2.17.1
- 蓝牙协议2.0+EDR
- 联想G510黑苹果EFI+驱动+蓝牙+接近完美
- 千月蓝牙驱动破解版
- 基于nRF24L01一对多的无线通信
- 最新蓝牙5.1标准
- 基于单片机的蓝牙计步器的设计
- 手机app蓝牙测试源码hc-05蓝牙模块,适
- 无线通信基础中文版及部分答案
- ac69_sdk_v2012_p4_截止到20180126最新的SD
评论
共有 条评论