資源簡介
項目相關.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
- 下一篇:人機工程學
評論
共有 條評論