Harishankar

Results 14 comments of Harishankar

scroll to a particular id is possible, but I want to scroll to an offset. I am using this for a sliding ruler where user can select a floating point...

Not sure why, but with SDK 2.0, it works only with `#define PICO_FLASH_SPI_CLKDIV 4`

After comparing my whole codebase, I found that in previous version I fixed this problem using `PICO_XOSC_STARTUP_DELAY_MULTIPLIER` set to 64. However that didn't fix the issue after upgrading to SDK...

Yes, am able to reproduce. Overclocking Configuration ``` vreg_set_voltage(VREG_VOLTAGE_1_20); sleep_ms(1); set_sys_clock_khz(266 * 1000, true); ``` Old SDK version worked with ``` #define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 64 #define PICO_FLASH_SPI_CLKDIV 2 ``` New SDK...