Instruction Manual

Table Of Contents
20
The module starts the reception test. At this time, if the bit error rate is less than 1%,
the module's red light flashes uniformly. After sending the receive sensitivity test
command, it can be delayed for a period of time.
16 Module response 55 aa 11 08 00 02 xx xx xx xx yy yy yy yy crc16 16
Hibernation test: Send the hibernation command, the module enters the hibernation state,
and the hibernation state requires the module to be powered on before entering other
states. The module needs to be powered on again after the test
9, attached:
9.1, version information
The power-on version information displays 36 bytes, such as "VCWF-2E80-DE-XXD20-
20160302-Vsp1.00", where "20160302 is the compilation date and" Vsp1.00 "is the version
information
9.2. Command frame crc16 algorithm
#define CRC_POLY 0x8408
unsigned int comCalCRC16(const unsigned char *pucBuf, unsigned int uwLength)
{
unsigned int uiCRCValue=0xFFFF;
unsigned char ucLoop;
unsigned char * pu8Buf = (unsigned char *)pucBuf;
while(uwLength--)
{
uiCRCValue ^= *pu8Buf++;
for(ucLoop=0; ucLoop<8; ucLoop++)