资源简介
项目相关.rar
代码片段和文件信息
/*********************************************************************
* INCLUDES
*/
#include “OSAL.h“
#include “AF.h“
#include “ZDApp.h“
#include “ZDobject.h“
#include “ZDProfile.h“
#include “Coordinator.h“
#include “DebugTrace.h“
#include “aps_groups.h“
#if !defined( WIN32 )
#include “OnBoard.h“
#endif
/* HAL */
#include “hal_lcd.h“
#include “hal_led.h“
#include “hal_key.h“
#include “hal_uart.h“
#include “Sensor.h“
/*********************************************************************
* GLOBAL VARIABLES
*/
// This list should be filled with Application specific Cluster IDs.
const cId_t GenericApp_ClusterList[GENERICAPP_MAX_CLUSTERS] =
{
GENERICAPP_CLUSTERID
};
const SimpleDescriptionFormat_t GenericApp_SimpleDesc =
{
GENERICAPP_ENDPOINT // int Endpoint;
GENERICAPP_PROFID // uint16 AppProfId[2];
GENERICAPP_DEVICEID // uint16 AppDeviceId[2];
GENERICAPP_DEVICE_VERSION // int AppDevVer:4;
GENERICAPP_FLAGS // int AppFlags:4;
0 // byte AppNumInClusters;
(cId_t *) NULL // byte *pAppInClusterList;
GENERICAPP_MAX_CLUSTERS // byte AppNumInClusters;
(cId_t *)GenericApp_ClusterList // byte *pAppInClusterList;
};
endPointDesc_t GenericApp_epDesc;
/*******************************
类型名:Temperature_ALL
功能:协调器与终端之间的数据包
*******************************/
typedef union v
{
unsigned char data[16];
struct RFRXVDD
{
unsigned char Head; // 命令头
unsigned char derice; //设备名称
uint8 myNWK[4]; // 存储本节点的网络地址
uint8 pNWK[4]; // 存放父节点的网络地址
unsigned char values[3]; // 温度数据
unsigned char value[2]; // 电压数据
unsigned char Tail; // 命令尾
}Buf;
}Temperature_ALL;
/*******************************
类型名:data_C
功能:协调器与ARM之间的数据包
*******************************/
typedef union data_C{
unsigned char data[19];
struct
{
unsigned char head;
unsigned char mark;
unsigned char command[12];
unsigned char Addr[4];
unsigned char tail;
}data_t;
}data_C;
//
Temperature_ALL temp_u;
data_C data_c;
/*********************************************************************
* LOCAL VARIABLES
*/
byte GenericApp_TaskID; // Task ID for internal task/event processing
// This variable will be received when
byte GenericApp_TransID; // This is the unique message ID (counter)
// 设备状态
devStates_t GenericApp_NwkState;
//组初始化
aps_Group_t GenericApp_Group;
/*********************************************************************
* LOCAL FUNCTIONS
*/
// 发送数据
void uart0rx(uint8 port uint8 event);
static void GenericApp_SendTheMessage( void );
static void GenericApp_MessageMSGCB( afIncomingMSGPacket_t *pkt );
uint16 To_SAddr(uint8 *src);
/*********************************************************************
*
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1386496 2018-05-18 09:26 项目相关\3-Zigbee无线传感网络-综合实战.ppt
文件 3032611 2017-04-12 20:50 项目相关\KUANG\CC2530DB\CoordinatorEB\Exe\GenericApp.d51
文件 179978 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\AF.lst
文件 422186 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\AF.s51
文件 198860 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\BindingTable.lst
文件 319027 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\BindingTable.s51
文件 54984 2017-04-12 20:50 项目相关\KUANG\CC2530DB\CoordinatorEB\List\Coordinator.lst
文件 62373 2017-04-12 20:50 项目相关\KUANG\CC2530DB\CoordinatorEB\List\Coordinator.s51
文件 31665 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\DebugTrace.lst
文件 58291 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\DebugTrace.s51
文件 2810565 2017-04-12 20:50 项目相关\KUANG\CC2530DB\CoordinatorEB\List\GenericApp.map
文件 34676 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_adc.lst
文件 34315 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_adc.s51
文件 42662 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_assert.lst
文件 43946 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_assert.s51
文件 24320 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_dma.lst
文件 28965 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_dma.s51
文件 34280 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_drivers.lst
文件 45483 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_drivers.s51
文件 30171 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_flash.lst
文件 31127 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_flash.s51
文件 66026 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_key.lst
文件 71179 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_key.s51
文件 110265 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_lcd.lst
文件 176620 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_lcd.s51
文件 74781 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_led.lst
文件 78131 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_led.s51
文件 66371 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_sleep.lst
文件 83383 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_sleep.s51
文件 17485 2017-04-12 18:25 项目相关\KUANG\CC2530DB\CoordinatorEB\List\hal_startup.lst
............此处省略659个文件信息
- 上一篇:Auto.js + 打包插件.rar
- 下一篇:人机工程学
相关资源
- c02iax.rar
- zw_Linux内核设计的艺术:图解Linux操作
- zw_20170109155532170.zip
- 12441554zw_20161108163815476.zip
- zw_libeay32.dllssleay32.dll总有一款适合你
- GBT20257.2-2017国家基本比例尺地图图式
- 光线跟踪算法技术[美]萨芬著刘天慧译
-
spring-fr
amework-master.zip - SecureCRT8.3及破解说明.rar
- jt.zip
- 车牌字符集.rar
- ChineseNER-data.tar.xz
- 金字塔原理-完美书签版.pdf
- article.zip
- 2533安类.zip
- 工业大数据:架构与应用.郑树泉.宗宇
- 威盾IPguard4.23.0707.0内网监控官方.zip
- zw_qq_19772443-10890917-SEMG_DB1.zip
- Verilog传奇从电路出发的HDL代码设计
- Shooter.rar
- 半导体工艺和器件仿真软件SilvacoTCA
- 基于配对的密码学[李发根,吴威峰著
- 离散数学第二版2版耿素云屈婉玲学习
- 完整高清扫描版.pdf
- 商家联盟V1.0.2全开源解密版.zip
- 线性回归分析基础.rar
- zw_20170602174228540.zip
- 计算机网络_第5版_中文版_严伟_潘爱民
- [打印机维修完全学习手册].沈兆龙.扫
- VisualBasic与分布式监控系统--RS-232485串
评论
共有 条评论