• 大小: 9.61KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


本源码包含语句注释 主要工作原理是通过定时器产生38kHz的载波 发送空调的红外命令 帮助了解基于BLE协议栈下开发红外发射过程了解 其他平台只要修改相应的定时器通道输出(比如51单片机没有定时器通道定向输出特定GPIO的说法 那么可以在定时器里面是相应的GPIO做翻转即可产生载波) 希望能给做这方面开发的一些帮助 中国的大多数的程序猿不愿意分享自己的成果 或由于公司保密 哎 ">本源码包含语句注释 主要工作原理是通过定时器产生38kHz的载波 发送空调的红外命令 帮助了解基于BLE协议栈下开发红外发射过程了解 其他平台只要修改相应的定时器通道输出(比如51单片机没有定时器通道定向输出特定

资源截图

代码片段和文件信息

/* This Drivers for ********** 基于TI BLE-1.3.2 协议包,协议包可以到TI官网下载
 * Author: gezhenglai
 * Version: V0.1 2014.10
 * Function: 
*/

#include “bcomdef.h“
#include “OSAL.h“
#include “OSAL_PwrMgr.h“
#include “OnBoard.h“
#include “hal_adc.h“
#include “gatt.h“

#include “hci.h“

#include “gapgattserver.h“
#include “gattservapp.h“
#include “devinfoservice.h“
#include “simpleGATTprofile.h“

#if defined( CC2540_MINIDK )
  #include “simplekeys.h“
#endif

#if defined ( PLUS_BROADCASTER )
  #include “peripheralBroadcaster.h“
#else
  #include “peripheral.h“
#endif

#include “gapbondmgr.h“

#include “simpleBLEPeripheral.h“

#if defined FEATURE_OAD
  #include “oad.h“
  #include “oad_target.h“
#endif

//******************************************************************************
#include 
#include “NestModuleAPP.h“  //nest module
#include “hal_uart.h“  //for GATT 服务
#include “hal_key.h“

#include “bcomdef.h“
#include “OSAL.h“
#include “OSAL_Pwr

评论

共有 条评论