Skip to content

Commit be5e17e

Browse files
committed
Update STM32Cube_FW from Cube version v1.13.0
Signed-off-by: Alexandre Bourdiol <[email protected]>
1 parent ae6cfb1 commit be5e17e

17 files changed

+2248
-613
lines changed

src/utility/HCISharedMemTransport.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,12 @@ int HCISharedMemTransportClass::stm32wb_start_ble(void)
735735
CFG_BLE_MAX_CONN_EVENT_LENGTH,
736736
CFG_BLE_HSE_STARTUP_TIME,
737737
CFG_BLE_VITERBI_MODE,
738-
CFG_BLE_LL_ONLY,
739-
0 /** TODO Should be read from HW */
738+
CFG_BLE_OPTIONS,
739+
0, /** TODO Should be read from HW */
740+
CFG_BLE_MAX_COC_INITIATOR_NBR,
741+
CFG_BLE_MIN_TX_POWER,
742+
CFG_BLE_MAX_TX_POWER,
743+
CFG_BLE_RX_MODEL_CONFIG
740744
};
741745
/**
742746
* Starts the BLE Stack on CPU2

src/utility/STM32Cube_FW/LICENSE.md

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
SLA0044 Rev5/February 2018
2+
3+
## Software license agreement
4+
5+
### __ULTIMATE LIBERTY SOFTWARE LICENSE AGREEMENT__
6+
7+
BY INSTALLING, COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE
8+
OR ANY PART THEREOF (AND THE RELATED DOCUMENTATION) FROM STMICROELECTRONICS
9+
INTERNATIONAL N.V, SWISS BRANCH AND/OR ITS AFFILIATED COMPANIES
10+
(STMICROELECTRONICS), THE RECIPIENT, ON BEHALF OF HIMSELF OR HERSELF, OR ON
11+
BEHALF OF ANY ENTITY BY WHICH SUCH RECIPIENT IS EMPLOYED AND/OR ENGAGED AGREES
12+
TO BE BOUND BY THIS SOFTWARE LICENSE AGREEMENT.
13+
14+
Under STMicroelectronics’ intellectual property rights, the redistribution,
15+
reproduction and use in source and binary forms of the software or any part
16+
thereof, with or without modification, are permitted provided that the following
17+
conditions are met:
18+
19+
1. Redistribution of source code (modified or not) must retain any copyright
20+
notice, this list of conditions and the disclaimer set forth below as items 10
21+
and 11.
22+
23+
2. Redistributions in binary form, except as embedded into microcontroller or
24+
microprocessor device manufactured by or for STMicroelectronics or a software
25+
update for such device, must reproduce any copyright notice provided with the
26+
binary code, this list of conditions, and the disclaimer set forth below as
27+
items 10 and 11, in documentation and/or other materials provided with the
28+
distribution.
29+
30+
3. Neither the name of STMicroelectronics nor the names of other contributors to
31+
this software may be used to endorse or promote products derived from this
32+
software or part thereof without specific written permission.
33+
34+
4. This software or any part thereof, including modifications and/or derivative
35+
works of this software, must be used and execute solely and exclusively on or in
36+
combination with a microcontroller or microprocessor device manufactured by or
37+
for STMicroelectronics.
38+
39+
5. No use, reproduction or redistribution of this software partially or totally
40+
may be done in any manner that would subject this software to any Open Source
41+
Terms. “Open Source Terms” shall mean any open source license which requires as
42+
part of distribution of software that the source code of such software is
43+
distributed therewith or otherwise made available, or open source license that
44+
substantially complies with the Open Source definition specified at
45+
www.opensource.org and any other comparable open source license such as for
46+
example GNU General Public License (GPL), Eclipse Public License (EPL), Apache
47+
Software License, BSD license or MIT license.
48+
49+
6. STMicroelectronics has no obligation to provide any maintenance, support or
50+
updates for the software.
51+
52+
7. The software is and will remain the exclusive property of STMicroelectronics
53+
and its licensors. The recipient will not take any action that jeopardizes
54+
STMicroelectronics and its licensors' proprietary rights or acquire any rights
55+
in the software, except the limited rights specified hereunder.
56+
57+
8. The recipient shall comply with all applicable laws and regulations affecting
58+
the use of the software or any part thereof including any applicable export
59+
control law or regulation.
60+
61+
9. Redistribution and use of this software or any part thereof other than as
62+
permitted under this license is void and will automatically terminate your
63+
rights under this license.
64+
65+
10. THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" AND
66+
ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
67+
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
68+
NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, WHICH ARE
69+
DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT SHALL
70+
STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
71+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
72+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
73+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
74+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
75+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
76+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
77+
78+
11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER
79+
EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY
80+
RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY.

src/utility/STM32Cube_FW/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.8.0](https://github.com/STMicroelectronics/STM32CubeWB/releases/tag/v1.8.0)
5-
- Application: [BLE_TransparentMode](https://github.com/STMicroelectronics/STM32CubeWB/tree/v1.8.0/Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_TransparentMode)
4+
[STMicroelectronics/STM32CubeWB Release v1.13.0](https://github.com/STMicroelectronics/STM32CubeWB/releases/tag/v1.13.0)
5+
- Application: [BLE_TransparentMode](https://github.com/STMicroelectronics/STM32CubeWB/tree/v1.13.0/Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_TransparentMode)
66

0 commit comments

Comments
 (0)