Raphael Texier
Raphael Texier
for your display here is a piece of code that should make it work ! (I use it for my ST7789 screens) ```c #define RG_SCREEN_DRIVER 0 // 0 = ILI9341...
Yes this means a key is being pressed down put this line in your target.h ```c #define RG_RECOVERY_BTN RG_KEY_MENU // Keep this button pressed to open the recovery menu ```...
Yes seems nice ! just make sure you got \ at the end of each line
Well this issue seems a bit trickier I would recommend you take a look at the documentation on your device's keyboard + check all the availables modes in rg_input.c and...
No problem !
change `#define RG_STORAGE_SDSPI_HOST SPI3_HOST` with `#define RG_STORAGE_SDSPI_HOST SPI2_HOST` Since your are sharing the same SPI bus (pin MOSI, MISO and CLK) >  > > SD card is OK and...
Also, for you keyboard as @ducalex said you'll have to write your own driver for it, take a look at the datasheet of your keyboard driver and compare with the...