UKTailwind
UKTailwind
Corrected code in spi.h ``` static inline void spi_set_format(spi_inst_t *spi, uint data_bits, spi_cpol_t cpol, spi_cpha_t cpha, __unused spi_order_t order) { invalid_params_if(SPI, data_bits < 4 || data_bits > 16); // LSB-first...
Hi Great software - many thanks I'm trying to work out how to use the S/W with a single bit per pixel (mono display) I have set 1 BPP in...
I've tried to compile the simplest code for a range of the S3 boards and in each case I get the same error with the compilation unable to find soc/frc_timer_reg.h...
Hi I'm trying to use the code on a RP2040. I've got it working for small simple images but the heap usage is very high. For example a 100 by...
As per the title, My application was using this parameter in previous releases (1.5, 1.6) with no issues. On rebuilding with sdk2.0.0 the application didn't work (see https://forums.raspberrypi.com/viewtopic.php?p=2243782#p2243782) and this...
When explicitly creating a memory region to use multicore_launch_core1_with_stack it is reasonable to then set the size of the default core1 stack to zero in the cmake file. This creates...
Is there anyway to turn off case sensitivity for filenames? I'm running code with LittleFS on the flash "disk" and FatFS on the SDcard. FatFS is not case sensitive and...
MMBasic creates an image which is just under a Megabyte (rp2040). elf2uf2 used to create the uf2 in a couple of seconds. picotool takes several minutes and a processor is...
Writing to flash changes the QSPI pad settings back to default. I've worked round this by making the following change to flash.c ```c typedef struct flash_rp2350_qmi_save_state { uint32_t timing; uint32_t...
Hi I'm including the code in MMbasic which is a modern Basic environment that runs on the Raspberry Pi Pico. I'd like to include an acknowledgement for the author in...