Skip to content

Commit 954fdce

Browse files
author
Unify Automated
committed
Release ver_1.6.0
1 parent 8c3c67c commit 954fdce

File tree

12,192 files changed

+1298947
-1495265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,192 files changed

+1298947
-1495265
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
"bridge_binaries.zip" filter=lfs diff=lfs merge=lfs -text
12
"zap-2022.1.10.dmg" filter=lfs diff=lfs merge=lfs -text
23
"slc_cli_mac.zip" filter=lfs diff=lfs merge=lfs -text
34
"zap_apack_mac.zip" filter=lfs diff=lfs merge=lfs -text
4-
"zap_2022.1.10_amd64.deb" filter=lfs diff=lfs merge=lfs -text
55
"slc_cli_linux.zip" filter=lfs diff=lfs merge=lfs -text
66
"zap_apack_linux.zip" filter=lfs diff=lfs merge=lfs -text

CODEOWNERS

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
@@@UnifyCore @naagarwa @mamehta @sushanka
2-
@@@UnifyZWave @phcoval @jeboullo
3-
@@@UnifyZigbee @jolitwin @mpbreton
1+
@@@UnifyCore @naagarwa @mamehta @sushanka @sabollim
2+
@@@UnifyZWave @phcoval
3+
# Temporarily adding core team as reviewer for Zigbee
4+
@@@UnifyZigbee @naagarwa @sushanka @sabollim
45
@@@UnifyBT @tabenyhe @tahornos
5-
@@@Documentation @naagarwa @mamehta @phcoval @jolitwin @mpbreton @nibertol @tabenyhe @jeboullo
6-
@@@UnifyFwkServices @naagarwa @mamehta @sushanka
7-
@@@UnifyIoTServices @naagarwa @sushanka @sepastuk
6+
@@@Documentation @naagarwa @mamehta @phcoval @nibertol @tabenyhe @jutiron @bolabbe
7+
@@@UnifyFwkServices @naagarwa @mamehta @sushanka @sabollim
8+
@@@UnifyIoTServices @naagarwa @sushanka @sabollim
89
@@@CICD @naagarwa @dethammi @sushanka
910
@@@UnifyMultiProtcol @nibertol @supratap @frkillee @ismaghni @alautott
1011

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye
1+
FROM debian:bookworm
22

33
ENV DEBIAN_FRONTEND noninteractive
44
ENV LC_ALL en_US.UTF-8

applications/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fetch dependencies if forced
22
if(FETCH_GSDK MATCHES ON)
3-
find_package(GeckoSDK 4.3.0 REQUIRED)
3+
find_package(GeckoSDK 2024.6.0 REQUIRED)
44
endif()
55

66
# Build options will determine if the applications will be included and build

applications/aox/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
find_package(GeckoSDK 4.3.0 REQUIRED)
1+
find_package(GeckoSDK 2024.6.0 REQUIRED)
22

33
add_subdirectory(components)
44
add_subdirectory(applications)

applications/aox/applications/aoxpc/aoxpc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,9 @@ void aoa_db_on_tag_added(aoa_db_entry_t *tag)
274274
return;
275275
}
276276

277-
ec = aoa_init_rtl((aoa_state_t *)tag->user_data, locator_unid);
277+
ec = aoa_init_rtl((aoa_state_t *)tag->user_data,
278+
locator_unid,
279+
sl_log_get_level() == SL_LOG_DEBUG);
278280
if (ec != SL_RTL_ERROR_SUCCESS) {
279281
sl_log_critical(LOG_TAG, "aoa_init_rtl failed: %d", ec);
280282
panic();

applications/aox/applications/aoxpc/components/aoxpc_ncp_process/src/aoxpc_ncp_process.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ PROCESS_THREAD(ncp_process, ev, data)
5353
case PROCESS_EVENT_INIT:
5454
ncp_flush();
5555
sl_log_info(LOG_TAG, "Reset NCP");
56-
sl_bt_system_reset(sl_bt_system_boot_mode_normal);
56+
sl_bt_system_reboot();
5757
break;
5858
case BT_EVENT:
5959
if (NULL != ncp_bt_on_event) {
@@ -62,7 +62,7 @@ PROCESS_THREAD(ncp_process, ev, data)
6262
free(data);
6363
break;
6464
case BT_RESET:
65-
sl_bt_system_reset(sl_bt_system_boot_mode_normal);
65+
sl_bt_system_reboot();
6666
break;
6767
}
6868
PROCESS_WAIT_EVENT();

applications/aox/applications/aoxpc/components/aoxpc_ncp_update/src/aoxpc_ncp_update.c

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,17 @@ static void update_progress(size_t uploaded_size, size_t total_size)
2929
printf("\r%zu/%zu (%d%%)", uploaded_size, total_size, percentage);
3030
}
3131

32-
static sl_status_t system_reset(uint8_t boot_mode) {
32+
static sl_status_t system_reset(bool dfu) {
3333
sl_status_t sc;
3434
sl_bt_msg_t evt;
3535
uint32_t expected_event, received_event;
3636

37-
switch (boot_mode) {
38-
case sl_bt_system_boot_mode_normal:
39-
expected_event = sl_bt_evt_system_boot_id;
40-
sl_bt_system_reset(boot_mode);
41-
break;
42-
case sl_bt_system_boot_mode_uart_dfu:
43-
expected_event = sl_bt_evt_dfu_boot_id;
44-
sl_bt_user_reset_to_dfu();
45-
break;
46-
default:
47-
// Unsupported boot mode
48-
return SL_STATUS_INVALID_PARAMETER;
49-
break;
37+
if (dfu) {
38+
expected_event = sl_bt_evt_dfu_boot_id;
39+
sl_bt_user_reset_to_dfu();
40+
} else {
41+
expected_event = sl_bt_evt_system_boot_id;
42+
sl_bt_system_reboot();
5043
}
5144

5245
sc = sl_bt_wait_event(&evt);
@@ -90,10 +83,10 @@ sl_status_t aoxpc_ncp_update_fixt_setup()
9083

9184
if (do_ncp_update || ncp_version) {
9285
// Just print the firmware version
93-
(void)system_reset(sl_bt_system_boot_mode_normal);
86+
(void)system_reset(false);
9487

9588
if (do_ncp_update) {
96-
if (system_reset(sl_bt_system_boot_mode_uart_dfu) != SL_STATUS_OK) {
89+
if (system_reset(true) != SL_STATUS_OK) {
9790
return SL_STATUS_FAIL;
9891
}
9992
sl_log_info(LOG_TAG, "Pressing Crtl+C aborts the update process.");
@@ -105,7 +98,7 @@ sl_status_t aoxpc_ncp_update_fixt_setup()
10598

10699
if (sc == SL_STATUS_OK) {
107100
sl_log_info(LOG_TAG, "DFU finished successfully. Resetting the device.");
108-
if (system_reset(sl_bt_system_boot_mode_normal) != SL_STATUS_OK) {
101+
if (system_reset(false) != SL_STATUS_OK) {
109102
return SL_STATUS_FAIL;
110103
}
111104
} else {

applications/aox/applications/aoxpc/release_notes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# AoXPC Release Notes
22

3-
## [1.3.2] - Jun 2023
3+
4+
## [1.6.0] - Aug 2024
5+
6+
* Reference platform updated to Bookworm 64-bit based Raspberry Pi OS.
7+
* Migrated to [Bluetooth SDK](https://www.silabs.com/documents/public/release-notes/bt-software-release-notes-8.0.0.0.pdf) and [Bluetooth Location Services] (https://www.silabs.com/documents/public/release-notes/bt-rtl-library-release-notes-8.0.0.0.pdf)
48

59
## [1.3.1] - Mar 2023
610

applications/aox/applications/positioning/release_notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# AoX Positioning application Release Notes
22

3+
## [1.6.0] - Aug 2023
4+
5+
* Reference platform updated to Bookworm 64-bit based Raspberry Pi OS.
6+
* Migrated to [Bluetooth SDK](https://www.silabs.com/documents/public/release-notes/bt-software-release-notes-8.0.0.0.pdf) and [Bluetooth Location Services] (https://www.silabs.com/documents/public/release-notes/bt-rtl-library-release-notes-8.0.0.0.pdf)
7+
38
## [1.3.2] - Jun 2023
49

510
## [1.3.1] - Mar 2023

0 commit comments

Comments
 (0)