Skip to content

Commit 0e012b2

Browse files
committed
restyling and some build changes that were missed
1 parent 28a3d83 commit 0e012b2

18 files changed

+112
-109
lines changed

examples/lighting-app/silabs/efr32/src/LightingManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void LightingManager::AutoTurnOffTimerEventHandler(AppEvent * aEvent)
218218

219219
light->mAutoTurnOffTimerArmed = false;
220220

221-
SILABS_LOG("Auto Turn Off has been triggered!");
221+
SILABS_LOG("Auto Turn Off has been triggered!");
222222

223223
light->InitiateAction(actor, OFF_ACTION);
224224
}

examples/lock-app/efr32/src/LockManager.cpp

+29-29
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ CHIP_ERROR LockManager::Init(chip::app::DataModel::Nullable<chip::app::Clusters:
4141
if (LockParams.numberOfUsers > kMaxUsers)
4242
{
4343
SILABS_LOG("Max number of users is greater than %d, the maximum amount of users currently supported on this platform",
44-
kMaxUsers);
44+
kMaxUsers);
4545
return APP_ERROR_ALLOCATION_FAILED;
4646
}
4747

4848
if (LockParams.numberOfCredentialsPerUser > kMaxCredentialsPerUser)
4949
{
5050
SILABS_LOG("Max number of credentials per user is greater than %d, the maximum amount of users currently supported on this "
51-
"platform",
52-
kMaxCredentialsPerUser);
51+
"platform",
52+
kMaxCredentialsPerUser);
5353
return APP_ERROR_ALLOCATION_FAILED;
5454
}
5555

@@ -132,33 +132,33 @@ bool LockManager::ReadConfigValues()
132132
{
133133
size_t outLen;
134134
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_LockUser, reinterpret_cast<uint8_t *>(&mLockUsers),
135-
sizeof(EmberAfPluginDoorLockUserInfo) * ArraySize(mLockUsers), outLen);
135+
sizeof(EmberAfPluginDoorLockUserInfo) * ArraySize(mLockUsers), outLen);
136136

137137
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_Credential, reinterpret_cast<uint8_t *>(&mLockCredentials),
138-
sizeof(EmberAfPluginDoorLockCredentialInfo) * ArraySize(mLockCredentials), outLen);
138+
sizeof(EmberAfPluginDoorLockCredentialInfo) * ArraySize(mLockCredentials), outLen);
139139

140140
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_LockUserName, reinterpret_cast<uint8_t *>(mUserNames),
141-
sizeof(mUserNames), outLen);
141+
sizeof(mUserNames), outLen);
142142

143143
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_CredentialData, reinterpret_cast<uint8_t *>(mCredentialData),
144-
sizeof(mCredentialData), outLen);
144+
sizeof(mCredentialData), outLen);
145145

146146
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_UserCredentials, reinterpret_cast<uint8_t *>(mCredentials),
147-
sizeof(DlCredential) * LockParams.numberOfUsers * LockParams.numberOfCredentialsPerUser,
148-
outLen);
147+
sizeof(DlCredential) * LockParams.numberOfUsers * LockParams.numberOfCredentialsPerUser,
148+
outLen);
149149

150150
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_WeekDaySchedules, reinterpret_cast<uint8_t *>(mWeekdaySchedule),
151-
sizeof(EmberAfPluginDoorLockWeekDaySchedule) * LockParams.numberOfWeekdaySchedulesPerUser *
152-
LockParams.numberOfUsers,
153-
outLen);
151+
sizeof(EmberAfPluginDoorLockWeekDaySchedule) * LockParams.numberOfWeekdaySchedulesPerUser *
152+
LockParams.numberOfUsers,
153+
outLen);
154154

155155
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_YearDaySchedules, reinterpret_cast<uint8_t *>(mYeardaySchedule),
156-
sizeof(EmberAfPluginDoorLockYearDaySchedule) * LockParams.numberOfYeardaySchedulesPerUser *
157-
LockParams.numberOfUsers,
158-
outLen);
156+
sizeof(EmberAfPluginDoorLockYearDaySchedule) * LockParams.numberOfYeardaySchedulesPerUser *
157+
LockParams.numberOfUsers,
158+
outLen);
159159

160160
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_HolidaySchedules, reinterpret_cast<uint8_t *>(&(mHolidaySchedule)),
161-
sizeof(EmberAfPluginDoorLockHolidaySchedule) * LockParams.numberOfHolidaySchedules, outLen);
161+
sizeof(EmberAfPluginDoorLockHolidaySchedule) * LockParams.numberOfHolidaySchedules, outLen);
162162

163163
return true;
164164
}
@@ -387,13 +387,13 @@ bool LockManager::SetUser(chip::EndpointId endpointId, uint16_t userIndex, chip:
387387

388388
// Save user information in NVM flash
389389
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_LockUser, reinterpret_cast<const uint8_t *>(&mLockUsers),
390-
sizeof(EmberAfPluginDoorLockUserInfo) * LockParams.numberOfUsers);
390+
sizeof(EmberAfPluginDoorLockUserInfo) * LockParams.numberOfUsers);
391391

392392
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_UserCredentials, reinterpret_cast<const uint8_t *>(mCredentials),
393-
sizeof(DlCredential) * LockParams.numberOfUsers * LockParams.numberOfCredentialsPerUser);
393+
sizeof(DlCredential) * LockParams.numberOfUsers * LockParams.numberOfCredentialsPerUser);
394394

395395
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_LockUserName, reinterpret_cast<const uint8_t *>(mUserNames),
396-
sizeof(mUserNames));
396+
sizeof(mUserNames));
397397

398398
ChipLogProgress(Zcl, "Successfully set the user [mEndpointId=%d,index=%d]", endpointId, userIndex);
399399

@@ -474,10 +474,10 @@ bool LockManager::SetCredential(chip::EndpointId endpointId, uint16_t credential
474474

475475
// Save credential information in NVM flash
476476
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_Credential, reinterpret_cast<const uint8_t *>(&mLockCredentials),
477-
sizeof(EmberAfPluginDoorLockCredentialInfo) * LockParams.numberOfCredentialsPerUser);
477+
sizeof(EmberAfPluginDoorLockCredentialInfo) * LockParams.numberOfCredentialsPerUser);
478478

479479
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_CredentialData, reinterpret_cast<const uint8_t *>(&mCredentialData),
480-
sizeof(mCredentialData));
480+
sizeof(mCredentialData));
481481

482482
ChipLogProgress(Zcl, "Successfully set the credential [credentialType=%u]", to_underlying(credentialType));
483483

@@ -532,9 +532,9 @@ DlStatus LockManager::SetWeekdaySchedule(chip::EndpointId endpointId, uint8_t we
532532
scheduleInStorage.status = status;
533533

534534
// Save schedule information in NVM flash
535-
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_WeekDaySchedules, reinterpret_cast<const uint8_t *>(mWeekdaySchedule),
536-
sizeof(EmberAfPluginDoorLockWeekDaySchedule) * LockParams.numberOfWeekdaySchedulesPerUser *
537-
LockParams.numberOfUsers);
535+
SILABSConfig::WriteConfigValueBin(
536+
SILABSConfig::kConfigKey_WeekDaySchedules, reinterpret_cast<const uint8_t *>(mWeekdaySchedule),
537+
sizeof(EmberAfPluginDoorLockWeekDaySchedule) * LockParams.numberOfWeekdaySchedulesPerUser * LockParams.numberOfUsers);
538538

539539
return DlStatus::kSuccess;
540540
}
@@ -581,9 +581,9 @@ DlStatus LockManager::SetYeardaySchedule(chip::EndpointId endpointId, uint8_t ye
581581
scheduleInStorage.status = status;
582582

583583
// Save schedule information in NVM flash
584-
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_YearDaySchedules, reinterpret_cast<const uint8_t *>(mYeardaySchedule),
585-
sizeof(EmberAfPluginDoorLockYearDaySchedule) * LockParams.numberOfYeardaySchedulesPerUser *
586-
LockParams.numberOfUsers);
584+
SILABSConfig::WriteConfigValueBin(
585+
SILABSConfig::kConfigKey_YearDaySchedules, reinterpret_cast<const uint8_t *>(mYeardaySchedule),
586+
sizeof(EmberAfPluginDoorLockYearDaySchedule) * LockParams.numberOfYeardaySchedulesPerUser * LockParams.numberOfUsers);
587587

588588
return DlStatus::kSuccess;
589589
}
@@ -626,8 +626,8 @@ DlStatus LockManager::SetHolidaySchedule(chip::EndpointId endpointId, uint8_t ho
626626

627627
// Save schedule information in NVM flash
628628
SILABSConfig::WriteConfigValueBin(SILABSConfig::kConfigKey_HolidaySchedules,
629-
reinterpret_cast<const uint8_t *>(&(mHolidaySchedule)),
630-
sizeof(EmberAfPluginDoorLockHolidaySchedule) * LockParams.numberOfHolidaySchedules);
629+
reinterpret_cast<const uint8_t *>(&(mHolidaySchedule)),
630+
sizeof(EmberAfPluginDoorLockHolidaySchedule) * LockParams.numberOfHolidaySchedules);
631631

632632
return DlStatus::kSuccess;
633633
}

examples/platform/silabs/SilabsDeviceAttestationCreds.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include <lib/support/CodeUtils.h>
2121
#include <lib/support/Span.h>
2222

23-
#include "silabs_creds.h"
2423
#include "psa/crypto.h"
24+
#include "silabs_creds.h"
2525

2626
extern uint8_t __attestation_credentials_base[];
2727

@@ -50,13 +50,15 @@ class DeviceAttestationCredsSilabs : public DeviceAttestationCredentialsProvider
5050

5151
CHIP_ERROR GetDeviceAttestationCert(MutableByteSpan & out_buffer) override
5252
{
53-
ByteSpan cert_span(((uint8_t *) __attestation_credentials_base) + SILABS_CREDENTIALS_DAC_OFFSET, SILABS_CREDENTIALS_DAC_SIZE);
53+
ByteSpan cert_span(((uint8_t *) __attestation_credentials_base) + SILABS_CREDENTIALS_DAC_OFFSET,
54+
SILABS_CREDENTIALS_DAC_SIZE);
5455
return CopySpanToMutableSpan(cert_span, out_buffer);
5556
}
5657

5758
CHIP_ERROR GetProductAttestationIntermediateCert(MutableByteSpan & out_pai_buffer) override
5859
{
59-
ByteSpan cert_span(((uint8_t *) __attestation_credentials_base) + SILABS_CREDENTIALS_PAI_OFFSET, SILABS_CREDENTIALS_PAI_SIZE);
60+
ByteSpan cert_span(((uint8_t *) __attestation_credentials_base) + SILABS_CREDENTIALS_PAI_OFFSET,
61+
SILABS_CREDENTIALS_PAI_SIZE);
6062
return CopySpanToMutableSpan(cert_span, out_pai_buffer);
6163
}
6264

examples/platform/silabs/efr32/EFR32DeviceDataProvider.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ CHIP_ERROR EFR32DeviceDataProvider::GetSpake2pVerifier(MutableByteSpan & verifie
103103
char verifierB64[kSpake2pSerializedVerifier_MaxBase64Len] = { 0 };
104104
size_t verifierB64Len = 0;
105105

106-
err =
107-
SILABSConfig::ReadConfigValueStr(SILABSConfig::kConfigKey_Spake2pVerifier, verifierB64, sizeof(verifierB64), verifierB64Len);
106+
err = SILABSConfig::ReadConfigValueStr(SILABSConfig::kConfigKey_Spake2pVerifier, verifierB64, sizeof(verifierB64),
107+
verifierB64Len);
108108

109109
#if defined(CHIP_DEVICE_CONFIG_USE_TEST_SPAKE2P_VERIFIER)
110110
if (err == CHIP_DEVICE_ERROR_CONFIG_NOT_FOUND)
@@ -134,7 +134,7 @@ CHIP_ERROR EFR32DeviceDataProvider::GetSetupPayload(MutableCharSpan & payloadBuf
134134
size_t bitSetLen = 0;
135135

136136
err = SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_SetupPayloadBitSet, payloadBitSet, kTotalPayloadDataSizeInBytes,
137-
bitSetLen);
137+
bitSetLen);
138138

139139
#if defined(CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE) && CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE
140140
if (err == CHIP_DEVICE_ERROR_CONFIG_NOT_FOUND)
@@ -260,7 +260,8 @@ CHIP_ERROR EFR32DeviceDataProvider::GetRotatingDeviceIdUniqueId(MutableByteSpan
260260
"Length of unique ID for rotating device ID is smaller than minimum.");
261261

262262
size_t uniqueIdLen = 0;
263-
err = SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_UniqueId, uniqueIdSpan.data(), uniqueIdSpan.size(), uniqueIdLen);
263+
err =
264+
SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_UniqueId, uniqueIdSpan.data(), uniqueIdSpan.size(), uniqueIdLen);
264265
#ifdef CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID
265266
if (err == CHIP_DEVICE_ERROR_CONFIG_NOT_FOUND)
266267
{
@@ -294,7 +295,7 @@ CHIP_ERROR EFR32DeviceDataProvider::GetManufacturingDate(uint16_t & year, uint8_
294295
char * parseEnd;
295296

296297
err = SILABSConfig::ReadConfigValueBin(SILABSConfig::kConfigKey_ManufacturingDate, reinterpret_cast<uint8_t *>(dateStr),
297-
sizeof(dateStr), dateLen);
298+
sizeof(dateStr), dateLen);
298299
SuccessOrExit(err);
299300

300301
VerifyOrExit(dateLen == kDateStringLength, err = CHIP_ERROR_INVALID_ARGUMENT);

examples/platform/silabs/efr32/wf200/host_if.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ static void sl_wfx_scan_result_callback(sl_wfx_scan_result_ind_body_t * scan_res
283283
struct scan_result_holder * ap;
284284

285285
SILABS_LOG("# %2d %2d %03d %02X:%02X:%02X:%02X:%02X:%02X %s", scan_count, scan_result->channel,
286-
((int16_t)(scan_result->rcpi - 220) / 2), scan_result->mac[0], scan_result->mac[1], scan_result->mac[2],
287-
scan_result->mac[3], scan_result->mac[4], scan_result->mac[5], scan_result->ssid_def.ssid);
286+
((int16_t)(scan_result->rcpi - 220) / 2), scan_result->mac[0], scan_result->mac[1], scan_result->mac[2],
287+
scan_result->mac[3], scan_result->mac[4], scan_result->mac[5], scan_result->ssid_def.ssid);
288288
/*Report one AP information*/
289289
SILABS_LOG("\r\n");
290290
/* don't save if filter only wants specific ssid */
@@ -475,7 +475,7 @@ static void sl_wfx_client_connected_callback(uint8_t * mac)
475475
static void sl_wfx_ap_client_rejected_callback(uint32_t status, uint8_t * mac)
476476
{
477477
SILABS_LOG("Client rejected, reason: %d, MAC: %02X:%02X:%02X:%02X:%02X:%02X\r\n", (int) status, mac[0], mac[1], mac[2], mac[3],
478-
mac[4], mac[5]);
478+
mac[4], mac[5]);
479479
}
480480

481481
/****************************************************************************
@@ -488,7 +488,7 @@ static void sl_wfx_ap_client_disconnected_callback(uint32_t status, uint8_t * ma
488488
{
489489
// TODO
490490
SILABS_LOG("Client disconnected, reason: %d, MAC: %02X:%02X:%02X:%02X:%02X:%02X\r\n", (int) status, mac[0], mac[1], mac[2],
491-
mac[3], mac[4], mac[5]);
491+
mac[3], mac[4], mac[5]);
492492
}
493493
#endif /* SL_WFX_CONFIG_SOFTAP */
494494

@@ -636,8 +636,8 @@ static void wfx_events_task(void * p_arg)
636636
}
637637

638638
SILABS_LOG("WIFI Scan Paramter set to Active channel time %d, Passive "
639-
"Channel Time: %d, Number of prob: %d",
640-
ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
639+
"Channel Time: %d, Number of prob: %d",
640+
ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
641641
(void) sl_wfx_set_scan_parameters(ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
642642
(void) sl_wfx_send_scan_command(WFM_SCAN_MODE_ACTIVE, CHANNEL_LIST, /* Channel list */
643643
CHANNEL_COUNT, /* Scan all chans */
@@ -684,9 +684,9 @@ static sl_status_t wfx_init(void)
684684
{
685685
case SL_STATUS_OK:
686686
SILABS_LOG("WF200 FW ver:%d.%d.%d [MAC %02x:%02x:%02x-%02x:%02x:%02x]", wifiContext.firmware_major,
687-
wifiContext.firmware_minor, wifiContext.firmware_build, wifiContext.mac_addr_0.octet[0],
688-
wifiContext.mac_addr_0.octet[1], wifiContext.mac_addr_0.octet[2], wifiContext.mac_addr_0.octet[3],
689-
wifiContext.mac_addr_0.octet[4], wifiContext.mac_addr_0.octet[5]);
687+
wifiContext.firmware_minor, wifiContext.firmware_build, wifiContext.mac_addr_0.octet[0],
688+
wifiContext.mac_addr_0.octet[1], wifiContext.mac_addr_0.octet[2], wifiContext.mac_addr_0.octet[3],
689+
wifiContext.mac_addr_0.octet[4], wifiContext.mac_addr_0.octet[5]);
690690
SILABS_LOG("WF200 Init OK");
691691

692692
if (wifiContext.state == SL_WFX_STA_INTERFACE_CONNECTED)
@@ -756,7 +756,7 @@ int32_t wfx_get_ap_info(wfx_wifi_scan_result_t * ap)
756756
SILABS_LOG("WIFI:SSID:: %s", &ap_info.ssid[0]);
757757
memcpy(ap->ssid, ap_info.ssid, sizeof(ap_info.ssid));
758758
SILABS_LOG("WIFI:Mac addr:: %02x:%02x:%02x:%02x:%02x:%02x", ap_info.bssid[0], ap_info.bssid[1], ap_info.bssid[2],
759-
ap_info.bssid[3], ap_info.bssid[4], ap_info.bssid[5]);
759+
ap_info.bssid[3], ap_info.bssid[4], ap_info.bssid[5]);
760760
memcpy(ap->bssid, ap_info.bssid, sizeof(ap_info.bssid));
761761
ap->security = ap_info.security;
762762
SILABS_LOG("WIFI:security:: %d", ap->security);
@@ -1034,8 +1034,8 @@ sl_status_t wfx_connect_to_ap(void)
10341034
SILABS_LOG("WIFI:JOIN to %s", &wifi_provision.ssid[0]);
10351035

10361036
SILABS_LOG("WIFI Scan Paramter set to Active channel time %d, Passive Channel "
1037-
"Time: %d, Number of prob: %d",
1038-
ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
1037+
"Time: %d, Number of prob: %d",
1038+
ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
10391039
(void) sl_wfx_set_scan_parameters(ACTIVE_CHANNEL_TIME, PASSIVE_CHANNEL_TIME, NUM_PROBE_REQUEST);
10401040
result =
10411041
sl_wfx_send_join_command((uint8_t *) wifi_provision.ssid, strlen(wifi_provision.ssid), NULL, CHANNEL_0,
@@ -1062,7 +1062,7 @@ void wfx_get_wifi_mac_addr(sl_wfx_interface_t interface, sl_wfx_mac_address_t *
10621062
#endif
10631063
*addr = *mac;
10641064
SILABS_LOG("WLAN:Get WiFi Mac addr %02x:%02x:%02x:%02x:%02x:%02x", mac->octet[0], mac->octet[1], mac->octet[2], mac->octet[3],
1065-
mac->octet[4], mac->octet[5]);
1065+
mac->octet[4], mac->octet[5]);
10661066
memcpy(&ap_info.bssid[0], &mac->octet[0], 6);
10671067
}
10681068

examples/platform/silabs/silabs_creds.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
#define SILABS_CREDENTIALS_DAC_KEY_ID PSA_KEY_ID_USER_MIN + 1
3939
#endif
4040

41-
#endif // SILABS_DEVICE_CREDENTIALS
41+
#endif // SILABS_DEVICE_CREDENTIALS

examples/thermostat/efr32/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ void AppTask::UpdateThermoStatUI()
245245
}
246246
#else
247247
SILABS_LOG("Thermostat Status - M:%d T:%d'C H:%d'C C:%d'C", TempMgr().GetMode(), TempMgr().GetCurrentTemp(),
248-
TempMgr().GetHeatingSetPoint(), TempMgr().GetCoolingSetPoint());
248+
TempMgr().GetHeatingSetPoint(), TempMgr().GetCoolingSetPoint());
249249
#endif // DISPLAY_ENABLED
250250
}
251251

examples/thermostat/efr32/src/TemperatureManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ void TemperatureManager::AttributeChangeHandler(EndpointId endpointId, Attribute
104104

105105
case ThermAttr::OccupiedHeatingSetpoint::Id: {
106106
int8_t heatingTemp = ConvertToPrintableTemp(*((int16_t *) value));
107-
SILABS_LOG("HeatingSetpoint %d", heatingTemp);
107+
SILABS_LOG("HeatingSetpoint %d", heatingTemp);
108108
mHeatingCelsiusSetPoint = heatingTemp;
109109
}
110110
break;

src/platform/silabs/ConfigurationManagerImpl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626

2727
#include <platform/internal/GenericConfigurationManagerImpl.h>
2828

29-
#include <platform/silabs/EFR32Config.h>
29+
#include <platform/silabs/SilabsConfig.h>
3030

3131
namespace chip {
3232
namespace DeviceLayer {
3333

3434
/**
3535
* Concrete implementation of the ConfigurationManager singleton object for the EFR32 platform.
3636
*/
37-
class ConfigurationManagerImpl : public Internal::GenericConfigurationManagerImpl<Internal::EFR32Config>
37+
class ConfigurationManagerImpl : public Internal::GenericConfigurationManagerImpl<Internal::SILABSConfig>
3838
{
3939
public:
4040
// This returns an instance of this class.

src/platform/silabs/EFR32/BUILD.gn

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ static_library("EFR32") {
4444
"${silabs_platform_dir}/ConnectivityManagerImpl.h",
4545
"${silabs_platform_dir}/DiagnosticDataProviderImpl.cpp",
4646
"${silabs_platform_dir}/DiagnosticDataProviderImpl.h",
47-
"${silabs_platform_dir}/EFR32Config.cpp",
48-
"${silabs_platform_dir}/EFR32Config.h",
4947
"${silabs_platform_dir}/InetPlatformConfig.h",
5048
"${silabs_platform_dir}/KeyValueStoreManagerImpl.h",
5149
"${silabs_platform_dir}/Logging.cpp",
5250
"${silabs_platform_dir}/PlatformManagerImpl.h",
51+
"${silabs_platform_dir}/SilabsConfig.cpp",
52+
"${silabs_platform_dir}/SilabsConfig.h",
5353
"${silabs_platform_dir}/SystemPlatformConfig.h",
5454
"../../FreeRTOS/SystemTimeSupport.cpp",
5555
"../../SingletonConfigurationManager.cpp",

0 commit comments

Comments
 (0)