Skip to content

Commit e4e3d7c

Browse files
authored
Merge pull request #70 from fpistm/Update_CubeFW_1.20.0
chore: update to STM32_WPAN v1.20.0
2 parents da08a10 + c4c7874 commit e4e3d7c

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Diff for: src/utility/STM32_WPAN/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
## Source
33

4-
[STMicroelectronics/STM32CubeWB Release v1.19.0](https://github.com/STMicroelectronics/STM32CubeWB/releases/tag/v1.19.0)
5-
- Application: [BLE_TransparentMode](https://github.com/STMicroelectronics/STM32CubeWB/tree/v1.19.0/Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_TransparentMode)
4+
[STMicroelectronics/STM32CubeWB Release v1.20.0](https://github.com/STMicroelectronics/STM32CubeWB/releases/tag/v1.20.0)
5+
- Application: [BLE_TransparentMode](https://github.com/STMicroelectronics/STM32CubeWB/tree/v1.20.0/Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_TransparentMode)
66

Diff for: src/utility/STM32_WPAN/ble_bufsize.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*****************************************************************************
22
* @file ble_bufsize.h
3-
* @author MDG
3+
*
44
* @brief Definition of BLE stack buffers size
55
*****************************************************************************
66
* @attention
@@ -49,7 +49,7 @@
4949
*/
5050
#define BLE_MEM_BLOCK_SIZE 32
5151

52-
#if (SLAVE_ONLY != 0) ||(BASIC_FEATURES != 0)
52+
#if (SLAVE_ONLY != 0) || (BASIC_FEATURES != 0)
5353
#define BLE_MEM_BLOCK_X_PTX(n_link) 0
5454
#else
5555
#define BLE_MEM_BLOCK_X_PTX(n_link) (n_link)

Diff for: src/utility/STM32_WPAN/shci.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ extern "C" {
882882
#define SHCI_C2_CONFIG_CONFIG1_BIT0_BLE_NVM_DATA_TO_SRAM (1<<0)
883883
#define SHCI_C2_CONFIG_CONFIG1_BIT1_THREAD_NVM_DATA_TO_INTERNAL_FLASH (0<<1)
884884
#define SHCI_C2_CONFIG_CONFIG1_BIT1_THREAD_NVM_DATA_TO_SRAM (1<<1)
885+
#define SHCI_C2_CONFIG_CONFIG1_BIT2_SET_EUI64_FORMAT (1<<2)
885886

886887
/**
887888
* EvtMask1
@@ -1340,7 +1341,9 @@ typedef struct {
13401341
* 1 - BLE NVM Data are written in SRAM cache pointed by BleNvmRamAddress
13411342
* - bit1 : 0 - THREAD NVM Data data are flushed in internal secure flash
13421343
* 1 - THREAD NVM Data are written in SRAM cache pointed by ThreadNvmRamAddress
1343-
* - bit2 to bit7 : Unused, shall be set to 0
1344+
* - bit2 : 0 - Thread EUI64 is set to new (and current) format
1345+
* 1 - Thread EUI64 is set to old format
1346+
* - bit3 to bit7 : Unused, shall be set to 0
13441347
* uint8_t EvtMask1 :
13451348
* When a bit is set to 0, the event is not reported
13461349
* bit0 : Asynchronous Event with Sub Evt Code 0x9201 (= SHCI_SUB_EVT_ERROR_NOTIF)

0 commit comments

Comments
 (0)