Explorar el Código

Support Tools > CPU Speed menu for Teensy 4.0

main
PaulStoffregen hace 5 años
padre
commit
f88ef12dcd
Se han modificado 2 ficheros con 7 adiciones y 7 borrados
  1. +4
    -4
      teensy4/clockspeed.c
  2. +3
    -3
      teensy4/startup.c

+ 4
- 4
teensy4/clockspeed.c Ver fichero



// Define these to increase the voltage when attempting overclocking // Define these to increase the voltage when attempting overclocking
// The frequency step is how quickly to increase voltage per frequency // The frequency step is how quickly to increase voltage per frequency
// The datasheet says 1300 is the absolute maximum voltage. The hardware
// can actually create up to 1575, but going over 1300 risks damage!
// The datasheet says 1600 is the absolute maximum voltage. The hardware
// can actually create up to 1575. But 1300 is the recommended limit.
// (earlier versions of the datasheet said 1300 was the absolute max)
#define OVERCLOCK_STEPSIZE 28000000 #define OVERCLOCK_STEPSIZE 28000000
#define OVERCLOCK_MAX_VOLT 1300
//#define OVERCLOCK_MAX_VOLT 1575 // Danger Will Robinson!
#define OVERCLOCK_MAX_VOLT 1575




uint32_t set_arm_clock(uint32_t frequency); uint32_t set_arm_clock(uint32_t frequency);

+ 3
- 3
teensy4/startup.c Ver fichero

configure_systick(); configure_systick();
usb_pll_start(); usb_pll_start();
reset_PFD(); //TODO: is this really needed? reset_PFD(); //TODO: is this really needed?
set_arm_clock(600000000);
//set_arm_clock(984000000); Ludicrous Speed
#ifdef F_CPU
set_arm_clock(F_CPU);
#endif


asm volatile("nop\n nop\n nop\n nop": : :"memory"); // why oh why? asm volatile("nop\n nop\n nop\n nop": : :"memory"); // why oh why?



Cargando…
Cancelar
Guardar