-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmds_rf.c
32 lines (27 loc) · 1.14 KB
/
cmds_rf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**************************************************************************//**
* @file cmds_rf.c
* @brief The source file for command handling of RF related serialAPI
* commands
* @copyright 2022 Silicon Laboratories Inc.
*****************************************************************************/
#include <cmds_rf.h>
#include <app.h>
#include <ZW_application_transport_interface.h>
#include <utils.h>
#ifdef SUPPORT_ZW_SET_LISTEN_BEFORE_TALK_THRESHOLD
void func_id_set_listen_before_talk(__attribute__((unused)) uint8_t inputLength,
const uint8_t *pInputBuffer,
uint8_t *pOutputBuffer,
uint8_t *pOutputLength)
{
uint8_t bReturn;
SZwaveCommandPackage setLBTMode = {
.eCommandType = EZWAVECOMMANDTYPE_ZW_SET_LBT_THRESHOLD,
.uCommandParams.SetLBTThreshold.channel = pInputBuffer[0],
.uCommandParams.SetLBTThreshold.level = (int8_t)pInputBuffer[1]
};
bReturn = QueueProtocolCommand((uint8_t*)&setLBTMode);
pOutputBuffer[0] = ((EQUEUENOTIFYING_STATUS_SUCCESS == bReturn) ? true : false);
*pOutputLength = 1;
}
#endif