Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrihab kouki <rihab.kouki@st.com>2021-03-04 12:21:26 +0300
committerrihab kouki <rihab.kouki@st.com>2021-03-04 12:50:24 +0300
commita0b02a23ac8c0e6d3a076bb721ea9376d5e693c3 (patch)
treec85bbd8ec7d6f7194f3c4c3b543a014184af7fd7 /Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c
parente1185d3a8b01627d15a3789770de030122863484 (diff)
Release v1.11.0
Diffstat (limited to 'Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c')
-rw-r--r--Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c b/Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c
index 803ea316d..16d72918f 100644
--- a/Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c
+++ b/Projects/P-NUCLEO-WB55.USBDongle/Applications/Zigbee/Zigbee_OnOff_Client_Router/STM32_WPAN/App/app_zigbee.c
@@ -31,8 +31,8 @@
#include <assert.h>
#include "zcl/zcl.h"
-#include "zcl/zcl.onoff.h"
-#include "zcl/zcl.identify.h"
+#include "zcl/general/zcl.onoff.h"
+#include "zcl/general/zcl.identify.h"
/* Private defines -----------------------------------------------------------*/
#define APP_ZIGBEE_STARTUP_FAIL_DELAY 500U
@@ -152,8 +152,8 @@ static void APP_ZIGBEE_StackLayersInit(void)
static void APP_ZIGBEE_ConfigEndpoints(void)
{
- ZbApsmeAddEndpointReqT req;
- ZbApsmeAddEndpointConfT conf;
+ struct ZbApsmeAddEndpointReqT req;
+ struct ZbApsmeAddEndpointConfT conf;
memset(&req, 0, sizeof(req));
req.profileId = ZCL_PROFILE_HOME_AUTOMATION;
@@ -243,8 +243,8 @@ static void APP_ZIGBEE_NwkForm(void)
*/
static void APP_ZIGBEE_ConfigGroupAddr(void)
{
- ZbApsmeAddGroupReqT req;
- ZbApsmeAddGroupConfT conf;
+ struct ZbApsmeAddGroupReqT req;
+ struct ZbApsmeAddGroupConfT conf;
memset(&req, 0, sizeof(req));
req.endpt = SW1_ENDPOINT;