SmittyHalibut/EleksTubeHAX

BoingBall + FW Backup not displaying anything

saschaludwig opened this issue · 8 comments

If I flash the BoingBall, the displays remain all black.
On the serial I can see the fps numbers though.

I also tried flashing your original firmware: same result, black displays.
The fw dump from my clock looks a bit different in some places.
https://github.com/saschaludwig/EleksTubeHAX/blob/main/original-firmware/fw-backup-4M_sascha.bin

Any Idea what might be the difference?
My PCB says "EleksTube IPS Docker v6.1.11"

Best regards, Sascha

Thanks for pointing that out :-) my fault.
I'm a bit confused because TFT_CS and TFT_DC is redefined with different values at the end.
I will use the last ones and give it a try.

I now use:

#define ST7789_DRIVER
#define TFT_SDA_READ
#define TFT_RGB_ORDER TFT_RGB
#define TFT_HEIGHT 240
#define TFT_MISO -1
#define TFT_MOSI 23
#define TFT_SCLK 18
#define TFT_CS   -1 
#define TFT_DC   25
#define TFT_RST  26

And that gives me an output, but it's shifted towards the top and does some strange garbage if the ball is in the upper part of the display.

Here is a video of that:
https://www.youtube.com/watch?v=K37HdH-bM6A

Set width to 135. The same way you’re setting height.

That did the trick! :-)

and @frankcohen: yes, gave me goosebumps. awesome!