Need some Help with SSD1963 and RP2040 #2283
Replies: 8 comments 2 replies
-
Post your setup file for the Pico. Try a slower CPU clock speed. |
Beta Was this translation helpful? Give feedback.
-
Hello Bodmer! I make a small PCB today to keep the wires as short as possible and give it a try. ` //////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////// #define TFT_RGB_ORDER TFT_RGB // Colour order Red-Green-Blue //////////////////////////////////////////////////////////////////////////////////////////// //#define TFT_CS -1 // Do not define, chip select control pin permanently connected to 0V // These pins can be moved and are controlled directly by the library software //#define TFT_RD -1 // Do not define, read pin permanently connected to 3V3 // Note: All the following pins are PIO hardware configured and driven // PIO requires these to be sequentially increasing - do not change //////////////////////////////////////////////////////////////////////////////////////////// #define SMOOTH_FONT //////////////////////////////////////////////////////////////////////////////////////////// |
Beta Was this translation helpful? Give feedback.
-
I'm using 2.4.79. #define USE_BODMER #define WRITE_DELAY { WR_ACTIVE4; } #define RD_PORT sio_hw #define LMASK (0x03 << 18) #define PIN_LOW(port, pin) (port)->gpio_clr = (1<<(pin)) |
Beta Was this translation helpful? Give feedback.
-
Have you wired CS pin on display to GND, and RD pin on display to 3.3V when using TFT_eSPI? |
Beta Was this translation helpful? Give feedback.
-
I have raised an issue as it should work with your setup. Thanks for reporting this. |
Beta Was this translation helpful? Give feedback.
-
Thank You very much! I will follow the progress! |
Beta Was this translation helpful? Give feedback.
-
Fixed in master library. Thanks for repporting this. |
Beta Was this translation helpful? Give feedback.
-
Hello! Sorry for my late reply! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
First of all, thank your awesome library!
I have some trouble with a SSD1963 Display. It works fine with an ESP32, 8 bit mode, SSD1963_DIVERALT, and RGB order.
But if i use another MCU, in this case a Pi Pico, i get only wired colors and pixel garbage on the screen.
I also tried some STM32 boards, with no luck. STM32F103, STM32F411 (Blue and Black Pill) Nucleo64 L476RG and Nucleo144 H743ZI2.
for every test i made a user setup to set the correct pins. but no luck.
Other display drivers, like the ILI9486, work with the pico and at with the nucleo64.
Can some give me a hint? am i missing a bit?
Thank you very much and a happy new year! :D
Beta Was this translation helpful? Give feedback.
All reactions