Skip to content

Commit 310814a

Browse files
committed
Gecko SDK 4.1.0
1 parent 2e82050 commit 310814a

File tree

26,609 files changed

+1357695
-1997838
lines changed

Some content is hidden

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

26,609 files changed

+1357695
-1997838
lines changed

.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id=com.silabs.sdk.stack.super
22

3-
version=4.0.2
3+
version=4.1.0
44

55
label=Gecko SDK Suite
66
description=Gecko SDK Suite
@@ -15,7 +15,7 @@ buildNumber=0
1515

1616
# Look in these locations for extra properties
1717
# note that the single .properties input is a hack so that this will work while the stacks are updated
18-
extendedProperties=app/bluetooth/find_my.properties app/amazon/app_amazon.properties app/mcu_example/app_mcu.properties .studio/efm32.properties app/bluetooth/esf.properties app/bluetooth/btmesh.properties app/flex/esf.properties extension/homekit/app/esf.properties app/common/app_common.properties platform/bootloader/esf.properties platform/halconfig/halconfig.properties platform/base/base.properties platform/micrium_os/micrium-krnx.properties protocol/openthread/esf.properties protocol/zigbee/esf.properties protocol/z-wave/esf.properties protocol/usb/usb.properties hardware/kit/kit.properties hardware/reference_design/ref_design.properties util/plugin/plugin.properties app/wisun/esf.properties util/third_party/tensorflow_extra/apack.properties
18+
extendedProperties=app/bluetooth/find_my.properties app/amazon/app_amazon.properties app/mcu_example/app_mcu.properties .studio/efm32.properties app/bluetooth/esf.properties app/bluetooth/btmesh.properties app/flex/esf.properties extension/homekit/app/esf.properties app/common/app_common.properties platform/bootloader/esf.properties platform/halconfig/halconfig.properties platform/base/base.properties platform/micrium_os/micrium-krnx.properties protocol/openthread/esf.properties protocol/zigbee/esf.properties protocol/z-wave/esf.properties protocol/usb/usb.properties hardware/kit/kit.properties hardware/reference_design/ref_design.properties util/plugin/plugin.properties app/wisun/esf.properties util/third_party/tensorflow_extra/apack.properties extension/wiseconnect/esf.properties
1919

2020
# ISD options
2121
baseDirectory=platform/base

.studio/efm32.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# General properties are prepended with "prop."
22
prop.file.modulesFile=modules.xml
33

4+
# Linker file for legacy genproject projects
5+
prop.file.gccLinkerScript=linkerScripts/linkerfile.ld
Lines changed: 220 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
/***************************************************************************//**
2+
* Linker script for Silicon Labs EFM/EFR/EZR devices
3+
*******************************************************************************
4+
* # License
5+
* <b>Copyright 2019 Silicon Laboratories Inc. www.silabs.com</b>
6+
*******************************************************************************
7+
*
8+
* SPDX-License-Identifier: Zlib
9+
*
10+
* The licensor of this software is Silicon Laboratories Inc.
11+
*
12+
* This software is provided 'as-is', without any express or implied
13+
* warranty. In no event will the authors be held liable for any damages
14+
* arising from the use of this software.
15+
*
16+
* Permission is granted to anyone to use this software for any purpose,
17+
* including commercial applications, and to alter it and redistribute it
18+
* freely, subject to the following restrictions:
19+
*
20+
* 1. The origin of this software must not be misrepresented; you must not
21+
* claim that you wrote the original software. If you use this software
22+
* in a product, an acknowledgment in the product documentation would be
23+
* appreciated but is not required.
24+
* 2. Altered source versions must be plainly marked as such, and must not be
25+
* misrepresented as being the original software.
26+
* 3. This notice may not be removed or altered from any source distribution.
27+
*
28+
******************************************************************************/
29+
30+
$MEMORY_SECTION
31+
32+
/* Linker script to place sections and symbol values. Should be used together
33+
* with other linker script that defines memory regions FLASH and RAM.
34+
* It references following symbols, which must be defined in code:
35+
* Reset_Handler : Entry of reset handler
36+
*
37+
* It defines following symbols, which code can use without definition:
38+
* __exidx_start
39+
* __exidx_end
40+
* __copy_table_start__
41+
* __copy_table_end__
42+
* __zero_table_start__
43+
* __zero_table_end__
44+
* __etext
45+
* __data_start__
46+
* __preinit_array_start
47+
* __preinit_array_end
48+
* __init_array_start
49+
* __init_array_end
50+
* __fini_array_start
51+
* __fini_array_end
52+
* __data_end__
53+
* __bss_start__
54+
* __bss_end__
55+
* __end__
56+
* end
57+
* __HeapBase
58+
* __HeapLimit
59+
* __StackLimit
60+
* __StackTop
61+
* __stack
62+
* __Vectors_End
63+
* __Vectors_Size
64+
*/
65+
ENTRY(Reset_Handler)
66+
67+
SECTIONS
68+
{
69+
.text :
70+
{
71+
KEEP(*(.vectors))
72+
__Vectors_End = .;
73+
__Vectors_Size = __Vectors_End - __Vectors;
74+
__end__ = .;
75+
76+
*(.text*)
77+
78+
KEEP(*(.init))
79+
KEEP(*(.fini))
80+
81+
/* .ctors */
82+
*crtbegin.o(.ctors)
83+
*crtbegin?.o(.ctors)
84+
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
85+
*(SORT(.ctors.*))
86+
*(.ctors)
87+
88+
/* .dtors */
89+
*crtbegin.o(.dtors)
90+
*crtbegin?.o(.dtors)
91+
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
92+
*(SORT(.dtors.*))
93+
*(.dtors)
94+
95+
*(.rodata*)
96+
97+
KEEP(*(.eh_frame*))
98+
} > FLASH
99+
100+
.ARM.extab :
101+
{
102+
*(.ARM.extab* .gnu.linkonce.armextab.*)
103+
} > FLASH
104+
105+
__exidx_start = .;
106+
.ARM.exidx :
107+
{
108+
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
109+
} > FLASH
110+
__exidx_end = .;
111+
112+
.copy.table :
113+
{
114+
. = ALIGN(4);
115+
__copy_table_start__ = .;
116+
117+
LONG (__etext)
118+
LONG (__data_start__)
119+
LONG ((__data_end__ - __data_start__) / 4)
120+
121+
/* Add each additional data section here */
122+
/*
123+
LONG (__etext2)
124+
LONG (__data2_start__)
125+
LONG ((__data2_end__ - __data2_start__) / 4)
126+
*/
127+
__copy_table_end__ = .;
128+
} > FLASH
129+
130+
.zero.table :
131+
{
132+
. = ALIGN(4);
133+
__zero_table_start__ = .;
134+
/* Add each additional bss section here */
135+
/*
136+
LONG (__bss2_start__)
137+
LONG ((__bss2_end__ - __bss2_start__) / 4)
138+
*/
139+
__zero_table_end__ = .;
140+
} > FLASH
141+
142+
__etext = .;
143+
144+
.data : AT (__etext)
145+
{
146+
__data_start__ = .;
147+
*(vtable)
148+
*(.data*)
149+
. = ALIGN (4);
150+
PROVIDE (__ram_func_section_start = .);
151+
*(.ram)
152+
PROVIDE (__ram_func_section_end = .);
153+
154+
. = ALIGN(4);
155+
/* preinit data */
156+
PROVIDE_HIDDEN (__preinit_array_start = .);
157+
KEEP(*(.preinit_array))
158+
PROVIDE_HIDDEN (__preinit_array_end = .);
159+
160+
. = ALIGN(4);
161+
/* init data */
162+
PROVIDE_HIDDEN (__init_array_start = .);
163+
KEEP(*(SORT(.init_array.*)))
164+
KEEP(*(.init_array))
165+
PROVIDE_HIDDEN (__init_array_end = .);
166+
167+
. = ALIGN(4);
168+
/* finit data */
169+
PROVIDE_HIDDEN (__fini_array_start = .);
170+
KEEP(*(SORT(.fini_array.*)))
171+
KEEP(*(.fini_array))
172+
PROVIDE_HIDDEN (__fini_array_end = .);
173+
174+
KEEP(*(.jcr*))
175+
. = ALIGN(4);
176+
/* All data end */
177+
__data_end__ = .;
178+
179+
} > RAM
180+
181+
.bss :
182+
{
183+
. = ALIGN(4);
184+
__bss_start__ = .;
185+
*(.bss*)
186+
*(COMMON)
187+
. = ALIGN(4);
188+
__bss_end__ = .;
189+
} > RAM
190+
191+
.heap (COPY):
192+
{
193+
__HeapBase = .;
194+
__end__ = .;
195+
end = __end__;
196+
_end = __end__;
197+
KEEP(*(.heap*))
198+
__HeapLimit = .;
199+
} > RAM
200+
201+
/* .stack_dummy section doesn't contains any symbols. It is only
202+
* used for linker to calculate size of stack sections, and assign
203+
* values to stack symbols later */
204+
.stack_dummy (COPY):
205+
{
206+
KEEP(*(.stack*))
207+
} > RAM
208+
209+
/* Set stack top to end of RAM, and stack limit move down by
210+
* size of stack_dummy section */
211+
__StackTop = ORIGIN(RAM) + LENGTH(RAM);
212+
__StackLimit = __StackTop - SIZEOF(.stack_dummy);
213+
PROVIDE(__stack = __StackTop);
214+
215+
/* Check if data + heap + stack exceeds RAM limit */
216+
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
217+
218+
/* Check if FLASH usage exceeds FLASH size */
219+
ASSERT( LENGTH(FLASH) >= (__etext + SIZEOF(.data)), "FLASH memory overflowed !")
220+
}
Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project id="com.silabs.sdk.exx32.common.CMSIS" label="CMSIS DSP" contentRoot="$(sdkInstallationPath:default())/platform/CMSIS">
33
<property key="category" value="efm32|Common"/>
4-
<includePath uri="Include" />
5-
<folder name="DSP" uri="DSP_Lib/Source/BasicMathFunctions" includeAllFolders="false" />
6-
<folder name="DSP" uri="DSP_Lib/Source/CommonTables" includeAllFolders="false" />
7-
<folder name="DSP" uri="DSP_Lib/Source/ComplexMathFunctions" includeAllFolders="false" />
8-
<folder name="DSP" uri="DSP_Lib/Source/ControllerFunctions" includeAllFolders="false" />
9-
<folder name="DSP" uri="DSP_Lib/Source/FastMathFunctions" includeAllFolders="false" />
10-
<folder name="DSP" uri="DSP_Lib/Source/FilteringFunctions" includeAllFolders="false" />
11-
<folder name="DSP" uri="DSP_Lib/Source/MatrixFunctions" includeAllFolders="false" />
12-
<folder name="DSP" uri="DSP_Lib/Source/StatisticsFunctions" includeAllFolders="false" />
13-
<folder name="DSP" uri="DSP_Lib/Source/SupportFunctions" includeAllFolders="false" />
14-
<folder name="DSP" uri="DSP_Lib/Source/TransformFunctions" includeAllFolders="false" />
4+
<includePath uri="Core/Include" />
5+
<folder name="DSP" uri="DSP/Source/BasicMathFunctions" includeAllFolders="false" />
6+
<folder name="DSP" uri="DSP/Source/BayesFunctions" includeAllFolders="false" />
7+
<folder name="DSP" uri="DSP/Source/CommonTables" includeAllFolders="false" />
8+
<folder name="DSP" uri="DSP/Source/ComplexMathFunctions" includeAllFolders="false" />
9+
<folder name="DSP" uri="DSP/Source/ControllerFunctions" includeAllFolders="false" />
10+
<folder name="DSP" uri="DSP/Source/DistanceFunctions" includeAllFolders="false" />
11+
<folder name="DSP" uri="DSP/Source/FastMathFunctions" includeAllFolders="false" />
12+
<folder name="DSP" uri="DSP/Source/FilteringFunctions" includeAllFolders="false" />
13+
<folder name="DSP" uri="DSP/Source/InterpolationFunctions" includeAllFolders="false" />
14+
<folder name="DSP" uri="DSP/Source/MatrixFunctions" includeAllFolders="false" />
15+
<folder name="DSP" uri="DSP/Source/QuaternionMathFunctions" includeAllFolders="false" />
16+
<folder name="DSP" uri="DSP/Source/StatisticsFunctions" includeAllFolders="false" />
17+
<folder name="DSP" uri="DSP/Source/SupportFunctions" includeAllFolders="false" />
18+
<folder name="DSP" uri="DSP/Source/SVMFunctions" includeAllFolders="false" />
19+
<folder name="DSP" uri="DSP/Source/TransformFunctions" includeAllFolders="false" />
1520
</project>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project id="com.silabs.sdk.exx32.common.CMSISExamples" label="CMSIS Examples" contentRoot="$(sdkInstallationPath:default())/platform/CMSIS/DSP_Lib/Examples">
2+
<project id="com.silabs.sdk.exx32.common.CMSISExamples" label="CMSIS Examples" contentRoot="$(sdkInstallationPath:default())/platform/CMSIS/DSP/Examples">
33
<property key="category" value="efm32|Common"/>
4-
<property key="category" value="src/arm_fir_data.c"/>
4+
<property key="category" value="arm_fir_data.c"/>
55
<folder name="src" uri="arm_fir_example/ARM" includeAllFolders="false" />
66
</project>
Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,48 @@
11
<?xml version="1.0" encoding="ASCII"?>
22
<model:MDescriptors xmlns:model="http://www.silabs.com/ss/Studio.ecore">
3-
<descriptors name="aws_gatt_server" label="Amazon - AWS - Bluetooth GATT Server" description="This application demonstrates how to use the FreeRTOS Bluetooth Low Energy middleware APIs to create a simple GATT server.">
3+
<descriptors name="amazon_aws_soc_gatt_server" label="Amazon AWS - SoC Bluetooth GATT Server" description="This application demonstrates how to use the FreeRTOS Bluetooth Low Energy middleware APIs to create a simple GATT server.">
44
<properties key="namespace" value="template.uc"/>
55
<properties key="keywords" value="universal\ configurator"/>
6-
<properties key="projectFilePaths" value="example/aws_demos/aws_gatt_server.slcp"/>
6+
<properties key="solutionReferenceId" value="app.amazon.example.amazon_aws_demos.amazon_aws_soc_gatt_server.slcp"/>
7+
<properties key="projectFilePaths" value="example/amazon_aws_demos/amazon_aws_soc_gatt_server.slcp"/>
78
<properties key="readmeFiles" value=""/>
8-
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
9+
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4195a brd4196a brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
910
<properties key="partCompatibility" value=".*bgm21.* .*bgm22.* .*mgm21.* .*mgm22.* .*efr32bg21.* .*efr32bg22.* .*efr32mg21.* .*efr32mg22.*"/>
1011
<properties key="ideCompatibility" value="makefile-ide simplicity-ide"/>
1112
<properties key="toolchainCompatibility" value="gcc segger"/>
1213
<properties key="category" value="Example|AWS IoT"/>
1314
<properties key="quality" value="ALPHA"/>
1415
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
16+
<properties key="filters" value="Device\ Type|SoC Ecosystem|Amazon Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
1517
</descriptors>
16-
<descriptors name="aws_mqtt_over_ble" label="Amazon - AWS - MQTT over Bluetooth" description="This application demonstrates how to use the MQTT over Bluetooth Low Energy service.">
18+
<descriptors name="amazon_aws_soc_mqtt_over_ble" label="Amazon AWS - SoC MQTT over Bluetooth Low Energy" description="This application demonstrates how to use the MQTT over Bluetooth Low Energy service.">
1719
<properties key="namespace" value="template.uc"/>
1820
<properties key="keywords" value="universal\ configurator"/>
19-
<properties key="projectFilePaths" value="example/aws_demos/aws_mqtt_over_ble.slcp"/>
21+
<properties key="solutionReferenceId" value="app.amazon.example.amazon_aws_demos.amazon_aws_soc_mqtt_over_ble.slcp"/>
22+
<properties key="projectFilePaths" value="example/amazon_aws_demos/amazon_aws_soc_mqtt_over_ble.slcp"/>
2023
<properties key="readmeFiles" value=""/>
21-
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
24+
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4195a brd4196a brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
2225
<properties key="partCompatibility" value=".*bgm21.* .*bgm22.* .*mgm21.* .*mgm22.* .*efr32bg21.* .*efr32bg22.* .*efr32mg21.* .*efr32mg22.*"/>
2326
<properties key="ideCompatibility" value="makefile-ide simplicity-ide"/>
2427
<properties key="toolchainCompatibility" value="gcc segger"/>
2528
<properties key="category" value="Example|AWS IoT"/>
2629
<properties key="quality" value="ALPHA"/>
2730
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
31+
<properties key="filters" value="Device\ Type|SoC Ecosystem|Amazon Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
2832
</descriptors>
29-
<descriptors name="aws_tests_bt" label="Amazon - AWS - Bluetooth Tests" description="Project to run AWS Tests including BLE tests on Silicon Labs boards.">
33+
<descriptors name="amazon_aws_soc_bt_tests" label="Amazon AWS - SoC Bluetooth Tests" description="Project to run AWS Tests including BLE tests on Silicon Labs boards.">
3034
<properties key="namespace" value="template.uc"/>
3135
<properties key="keywords" value="universal\ configurator"/>
32-
<properties key="projectFilePaths" value="example/aws_tests/aws_tests_bt.slcp"/>
36+
<properties key="solutionReferenceId" value="app.amazon.example.amazon_aws_tests.amazon_aws_soc_bt_tests.slcp"/>
37+
<properties key="projectFilePaths" value="example/amazon_aws_tests/amazon_aws_soc_bt_tests.slcp"/>
3338
<properties key="readmeFiles" value=""/>
34-
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
39+
<properties key="boardCompatibility" value="brd4171a brd4176a brd4179b brd4180a brd4180b brd4181a brd4181b brd4181c brd4195a brd4196a brd4308a brd4308b brd4308c brd4308d brd4309a brd4309b com.silabs.board.none"/>
3540
<properties key="partCompatibility" value=".*bgm21.* .*bgm22.* .*mgm21.* .*mgm22.* .*efr32bg21.* .*efr32bg22.* .*efr32mg21.* .*efr32mg22.*"/>
3641
<properties key="ideCompatibility" value="makefile-ide segger-embedded-studio simplicity-ide"/>
3742
<properties key="toolchainCompatibility" value="gcc"/>
3843
<properties key="category" value="Example|AWS IoT"/>
3944
<properties key="quality" value="ALPHA"/>
4045
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
46+
<properties key="filters" value="Device\ Type|SoC Ecosystem|Amazon Project\ Difficulty|Advanced Wireless\ Technology|Bluetooth"/>
4147
</descriptors>
4248
</model:MDescriptors>
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
<?xml version="1.0" encoding="ASCII"?>
22
<model:MDescriptors xmlns:model="http://www.silabs.com/ss/Studio.ecore">
3-
<descriptors name="aws_tests" label="Amazon - AWS - Tests" description="Project to run AWS Tests on Silicon Labs boards.">
3+
<descriptors name="amazon_aws_tests" label="Amazon AWS - Platform Tests" description="Project to run AWS Tests on Silicon Labs boards.">
44
<properties key="namespace" value="template.uc"/>
55
<properties key="keywords" value="universal\ configurator"/>
6-
<properties key="projectFilePaths" value="example/aws_tests/aws_tests.slcp"/>
6+
<properties key="solutionReferenceId" value="app.amazon.example.amazon_aws_tests.amazon_aws_tests.slcp"/>
7+
<properties key="projectFilePaths" value="example/amazon_aws_tests/amazon_aws_tests.slcp"/>
78
<properties key="readmeFiles" value=""/>
89
<properties key="boardCompatibility" value="brd4180a brd4180b brd4181a brd4181b brd4181c com.silabs.board.none"/>
9-
<properties key="partCompatibility" value=".*bgm1.* .*bgm13.* .*bgm22.* .*efm32g.* .*efm32gg.* .*efm32gg11b.* .*efm32gg12b.* .*efm32hg.* .*efm32lg.* .*efm32pg12b.* .*efm32pg1b.* .*efm32pg22.* .*efm32pg23.* .*efm32tg.* .*efm32tg11b.* .*efm32wg.* .*efm32zg.* .*efr32bg12p.* .*efr32bg13p.* .*efr32bg1b.* .*efr32bg1p.* .*efr32bg22.* .*efr32fg12p.* .*efr32fg13p.* .*efr32fg14p.* .*efr32fg1p.* .*efr32fg23.* .*efr32mg12p.* .*efr32mg13p.* .*efr32mg14p.* .*efr32mg1p.* .*efr32mg21.* .*efr32mg22.* .*efr32mg24.* .*efr32zg13l.* .*efr32zg13p.* .*efr32zg13s.* .*efr32zg14p.* .*efr32zg23.* .*mgm1.* .*mgm12.* .*mgm13.* .*mgm21.* .*mgm22.* .*mgm24.* .*wgm160.* .*zgm13.* .*zgm23.*"/>
10+
<properties key="partCompatibility" value=".*bgm1.* .*bgm13.* .*bgm22.* .*efm32g.* .*efm32gg.* .*efm32gg11b.* .*efm32gg12b.* .*efm32hg.* .*efm32lg.* .*efm32pg12b.* .*efm32pg1b.* .*efm32pg22.* .*efm32pg23.* .*efm32tg.* .*efm32tg11b.* .*efm32wg.* .*efm32zg.* .*efr32bg12p.* .*efr32bg13p.* .*efr32bg1b.* .*efr32bg1p.* .*efr32bg22.* .*efr32bg27.* .*efr32fg12p.* .*efr32fg13p.* .*efr32fg14p.* .*efr32fg1p.* .*efr32fg23.* .*efr32mg12p.* .*efr32mg13p.* .*efr32mg14p.* .*efr32mg1p.* .*efr32mg21.* .*efr32mg22.* .*efr32mg24.* .*efr32mg27.* .*efr32mr21.* .*efr32zg13l.* .*efr32zg13p.* .*efr32zg13s.* .*efr32zg14p.* .*efr32zg23.* .*fgm23.* .*mgm1.* .*mgm12.* .*mgm13.* .*mgm21.* .*mgm22.* .*mgm24.* .*wgm160.* .*zgm13.* .*zgm23.*"/>
1011
<properties key="ideCompatibility" value="iar-embedded-workbench makefile-ide segger-embedded-studio simplicity-ide"/>
1112
<properties key="toolchainCompatibility" value="gcc iar segger"/>
1213
<properties key="category" value="Example|AWS IoT"/>
1314
<properties key="quality" value="ALPHA"/>
1415
<properties key="stockConfigCompatibility" value="com.silabs.ss.framework.project.toolchain.core.default"/>
16+
<properties key="filters" value="Ecosystem|Amazon MCU|Operating\ Systems Project\ Difficulty|Advanced"/>
1517
</descriptors>
1618
</model:MDescriptors>

app/amazon/app_amazon.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ id=com.silabs.sdk.amazon
33
label=Amazon
44
description=Amazon
55
version=3.3.0.0
6-
dependantSdkVersion=3.3.0
7-
prop.subLabel=Amazon
6+
dependantSdkVersion=4.1.0
7+
prop.subLabel=Amazon\\ 202012.00
88

99
# General properties are prepended with "prop."
1010
prop.file.templatesFile=amazon_platform_alpha_templates.xml amazon_bluetooth_alpha_templates.xml amazon_alpha_templates.xml amazon_production_templates.xml

0 commit comments

Comments
 (0)