Uli Raich

Results 56 comments of Uli Raich

I think embeddedt gave the answer: I do have an NVidia graphics card

This is what I see when I run lv_micropython in gdb ![image](https://user-images.githubusercontent.com/1673533/93939109-93e60300-fd2a-11ea-8f1d-e25bf2d55f14.png)

Yes, the same sequence. Without gdb I see this: ![image](https://user-images.githubusercontent.com/1673533/93939631-5d5cb800-fd2b-11ea-860a-27ce3d8a76e3.png)

Correct!, So it is in the nvidia-glcore library ![image](https://user-images.githubusercontent.com/1673533/93939854-c47a6c80-fd2b-11ea-913d-f677dcd28458.png)

Stupid question: If it was a problem from which thread SDL_init is called, should we then not have the same problem independently of the display driver? When I run my...

Did you compile MicroPython with the camera driver yourself or did you use the binary version supplied?

I traced it down a little further: First, it does not find the image path: A:lvgl/examples/assets/emoji" When I replace it with ./lvgl/examples/assets/emoji it will find the F600 emoji However, it...

This is what I get on my Ubuntu-22.04 system (latest updates) ![image](https://user-images.githubusercontent.com/1673533/187910811-8af13d0b-d6e0-4915-bcc1-e55795a88ab2.png)! It tries to find 0031.png and 0032.png which corresponds to the "1" and "2" written before the first...

Ok, that works. Thanks. However, lv_imgfont_create does not adhere to the MicroPython conventions and translating lv_imgfont_create to imgfont=lv.imgfont(lv..scr_act()) does not work. Is there a way to correct this?

Hi Gabor, In the simulator the directory in which the binary is stored is simulator/build/bin/main. When I run the program with: ./build/bin/main, while removing the drive letter, then it works....