Merge pull request #8458 from SiliconLabs/dev_8.2

Change system clock to 78Mhz
This commit is contained in:
Dan Halbert 2023-10-03 11:21:00 -04:00 committed by GitHub
commit 0e96ece01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ sdk_extension:
- id: cp_efr32
version: 1.0.0
component:
- {id: device_init_dpll}
- {id: bluetooth_feature_nvm}
- {id: bluetooth_feature_gatt_server}
- {id: bluetooth_feature_sm}

View File

@ -50,7 +50,7 @@ float common_hal_mcu_processor_get_voltage(void) {
}
uint32_t common_hal_mcu_processor_get_frequency(void) {
return CMU_ClockFreqGet(cmuClock_HCLK);
return CMU_ClockFreqGet(cmuClock_SYSCLK);
}
void common_hal_mcu_processor_get_uid(uint8_t raw_id[]) {