Overclocking the daisy

What do you think about it?

I tried 560mhz and even 600mhz.

While I noticed not much of a difference,
does it work this way and are there side effects?

        enum class SysClkFreq
        {
            FREQ_400MHZ,
            FREQ_560MHZ,
        };

        /** Method to call on the struct to set to defaults
         ** CPU Freq set to 400MHz
         ** Cache Enabled
         ** */
        void Defaults()
        {
            cpu_freq    = SysClkFreq::FREQ_400MHZ;
            use_dcache  = true;
            use_icache  = true;
            skip_clocks = false;
        }

        /** Method to call on the struct to set to boost mode:
         ** CPU Freq set to 480MHz
         ** Cache Enabled
         ** */
        void Boost()
        {
            cpu_freq    = SysClkFreq::FREQ_560MHZ;
            use_dcache  = true;
            use_icache  = true;
            skip_clocks = false;
        }
``

That won’t change the frequency.