You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
298 B
C++
20 lines
298 B
C++
//
|
|
//
|
|
//
|
|
|
|
#include "ZigBeeOperator.h"
|
|
|
|
void ZigBeeOperatorClass::Initialization()
|
|
{
|
|
ExtSRAMInterface.Initialization();
|
|
}
|
|
|
|
void ZigBeeOperatorClass::SendCommand(uint8_t* cmd, uint16_t siz)
|
|
{
|
|
ExtSRAMInterface.ExMem_Write_Bytes(zigbee_address, cmd, siz);
|
|
}
|
|
|
|
|
|
ZigBeeOperatorClass ZigBeeOperator;
|
|
|