samd/modmachine: Allow changing the CPU freq with machine.freq(f).

SAMD51 only.  Accepted values are 48_000_000 to 200_000_000.  The range
specified by Atmel is 96_000_000 to 120_000_000.
This commit is contained in:
robert-hh 2022-06-04 17:00:32 +02:00 committed by Damien George
parent b4d29fd47a
commit 5af54ad61f
1 changed files with 14 additions and 3 deletions

View File

@ -59,10 +59,21 @@ STATIC mp_obj_t machine_bootloader(void) {
}
MP_DEFINE_CONST_FUN_OBJ_0(machine_bootloader_obj, machine_bootloader);
STATIC mp_obj_t machine_freq(void) {
return MP_OBJ_NEW_SMALL_INT(CPU_FREQ);
STATIC mp_obj_t machine_freq(size_t n_args, const mp_obj_t *args) {
if (n_args == 0) {
return MP_OBJ_NEW_SMALL_INT(get_cpu_freq());
} else {
#if defined(MCU_SAMD51)
uint32_t freq = mp_obj_get_int(args[0]);
if (freq >= 48000000 && freq <= 200000000) {
set_cpu_freq(freq);
SysTick_Config(freq / 1000);
}
#endif
return mp_const_none;
}
}
MP_DEFINE_CONST_FUN_OBJ_0(machine_freq_obj, machine_freq);
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_freq_obj, 0, 1, machine_freq);
STATIC mp_obj_t machine_unique_id(void) {
// Each device has a unique 128-bit serial number which is a concatenation of four 32-bit