Skip to content

Commit

Permalink
Merge branch 'release/esp-zigbee-sdk-v1.0.9' into 'master'
Browse files Browse the repository at this point in the history
esp-zboss-lib: release/v1.0.9(c44d420e)

See merge request espressif/esp-zboss-lib!57
  • Loading branch information
chshu committed Jan 19, 2024
2 parents f0e12dc + 8a57aa4 commit edc7b72
Show file tree
Hide file tree
Showing 26 changed files with 22 additions and 14 deletions.
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.8
version: 1.0.9
description: esp-zboss library component
url: https://github.com/espressif/esp-zboss-lib
dependencies:
Expand Down
3 changes: 3 additions & 0 deletions include/zb_vendor.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
#include "zb_vendor_host.h"
#endif

#define ZB_IOBUF_POOL_SIZE 80
#define ZB_SCHEDULER_Q_SIZE 80

#if CONFIG_ZB_R22_ENABLE
#define ZB_ENABLE_SE
#define ZB_ENABLE_ZGP
Expand Down
8 changes: 0 additions & 8 deletions include/zb_vendor_default.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@
#define ZB_DISTRIBUTED_SECURITY_ON
#define ZB_SECURITY_INSTALLCODES

#ifndef ZB_ED_ROLE
#define ZB_IOBUF_POOL_SIZE 80
#define ZB_SCHEDULER_Q_SIZE 80
#else
#define ZB_IOBUF_POOL_SIZE 80
#define ZB_SCHEDULER_Q_SIZE 80
#endif

/* ZGP */
#ifdef CONFIG_ZB_GP_ENABLED
#define ZB_ENABLE_ZGP
Expand Down
2 changes: 0 additions & 2 deletions include/zb_vendor_rcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@
#define ZB_SEND_BEACON_IMMEDIATELY

#define ZB_CB_QUANT 1
#define ZB_IOBUF_POOL_SIZE 60
#define ZB_SCHEDULER_Q_SIZE 60

#define ZB_MACSPLIT_FW_UPGRADE
#define ZB_USE_OSIF_OTA_ROUTINES
Expand Down
3 changes: 0 additions & 3 deletions include/zb_vendor_zgpd.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@
#define ZB_DISTRIBUTED_SECURITY_ON
#define ZB_SECURITY_INSTALLCODES

#define ZB_IOBUF_POOL_SIZE 60
#define ZB_SCHEDULER_Q_SIZE 60

/* ZGP */
#define ZB_ENABLE_ZGP
#define ZB_ENABLE_ZGP_GPCB
Expand Down
18 changes: 18 additions & 0 deletions include/zboss_api_aps.h
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,17 @@ zb_uint8_t zb_aps_get_max_buffer_size(zb_uint16_t short_addr);
*/
typedef void (*zb_aps_user_payload_callback_t)(zb_uint8_t param);

/**
* @brief NLDE-DATA.indication data callback
*
* @param[in] param index of buffer with an APS indication
*
* @return
* - true: Processed
* - false: Not processed
*/
typedef zb_bool_t (*zb_aps_indication_data_callback_t)(zb_uint8_t param);

/*!
* @brief
* APS user payload transmission status
Expand Down Expand Up @@ -581,6 +592,13 @@ zb_uint8_t *zb_aps_get_aps_payload(zb_uint8_t param, zb_uint8_t *aps_payload_siz
*/
void zb_aps_set_user_data_tx_cb(zb_aps_user_payload_callback_t cb);

/**
* @brief Set callback to notify information of APS frame
*
* @param cb - pointer to a callback
*/
void zb_aps_set_indication_data_rx_cb(zb_aps_indication_data_callback_t cb);

/*!
* @brief Set callback to be called when ZDO command packet is sent.
*
Expand Down
Binary file modified lib/esp32/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32/libzboss_stack.zczr.trace.a
Binary file not shown.
Binary file modified lib/esp32c3/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32c3/libzboss_stack.zczr.trace.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.ed.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.ed.trace.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.gpd.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.rcp.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32c6/libzboss_stack.zczr.trace.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.ed.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.ed.trace.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.gpd.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.rcp.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32h2/libzboss_stack.zczr.trace.a
Binary file not shown.
Binary file modified lib/esp32s2/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32s2/libzboss_stack.zczr.trace.a
Binary file not shown.
Binary file modified lib/esp32s3/libzboss_stack.zczr.a
Binary file not shown.
Binary file modified lib/esp32s3/libzboss_stack.zczr.trace.a
Binary file not shown.

0 comments on commit edc7b72

Please sign in to comment.