8000 Merge pull request #8458 from SiliconLabs/dev_8.2 · pypewpew/circuitpython@0e96ece · GitHub
[go: up one dir, main page]

Skip to content

Commit 0e96ece

Browse files
authored
Merge pull request adafruit#8458 from SiliconLabs/dev_8.2
Change system clock to 78Mhz
2 parents a15c111 + 8d87c18 commit 0e96ece

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ports/silabs/circuitpython_efr32.slcp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ sdk_extension:
1919
- id: cp_efr32
2020
version: 1.0.0
2121
component:
22+
- {id: device_init_dpll}
2223
- {id: bluetooth_feature_nvm}
2324
- {id: bluetooth_feature_gatt_server}
< 89BA /td>
2425
- {id: bluetooth_feature_sm}

ports/silabs/common-hal/microcontroller/Processor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ float common_hal_mcu_processor_get_voltage(void) {
5050
}
5151

5252
uint32_t common_hal_mcu_processor_get_frequency(void) {
53-
return CMU_ClockFreqGet(cmuClock_HCLK);
53+
return CMU_ClockFreqGet(cmuClock_SYSCLK);
5454
}
5555

5656
void common_hal_mcu_processor_get_uid(uint8_t raw_id[]) {

0 commit comments

Comments
 (0)
0