Search found 22 matches

by Patrick
Tue Nov 03, 2020 1:27 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Libraries for the STM32F746G Discovery screen?
Replies: 14
Views: 13038

Re: Libraries for the STM32F746G Discovery screen?

Hello fpiSTM , There is a problem with the buffer allocation for the examples: uint16_t *buffer = (uint16_t *)malloc(LTDC_F746_ROKOTECH.width * LTDC_F746_ROKOTECH.height); Should be: uint16_t *buffer = (uint16_t *)malloc(LTDC_F746_ROKOTECH.width * LTDC_F746_ROKOTECH.height * sizeof(uint16_t)); The b...
by Patrick
Sun Nov 01, 2020 1:34 pm
Forum: General discussion
Topic: Anybody using LVGL?
Replies: 3
Views: 4866

Re: Anybody using LVGL?

I just created a GitHub repository for my project, Nucleo LEP.
You can check the code to have a working example.
I am working on a new project with a STM32F746 Discovery.
LVGL is working fine, display and touch.
by Patrick
Wed Oct 28, 2020 3:52 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Libraries for the STM32F746G Discovery screen?
Replies: 14
Views: 13038

Re: Libraries for the STM32F746G Discovery screen?

The libraries are working. But, if touch doesn't work check the C Runtime Library you are using. With Newlib Standard, it blocks in TwoWire::allocateTxBuffer, realloc gives null result and we go directly in ErrorHandler. With Newlib Nano, everything works well, realloc allocates the buffer. Don't kn...
by Patrick
Thu Oct 22, 2020 3:39 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Libraries for the STM32F746G Discovery screen?
Replies: 14
Views: 13038

Re: Libraries for the STM32F746G Discovery screen?

If not part of core release, is it possible to release just the libraries, LTDC and TS?
It will be interesting to have it managed directly by the IDE, as the others STM32DUINO libraries.
by Patrick
Thu Oct 22, 2020 12:52 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Libraries for the STM32F746G Discovery screen?
Replies: 14
Views: 13038

Re: Libraries for the STM32F746G Discovery screen?

Hello @fpiSTM,
Is it possible to have this part of the upcoming 2.0.0 release?
by Patrick
Wed Oct 21, 2020 7:16 pm
Forum: General discussion
Topic: Anybody using LVGL?
Replies: 3
Views: 4866

Re: Anybody using LVGL?

I am using it, stock LVGL library.
Nucleo-F429ZI and a TFT shield (UNO compatible).
MCUFRIEND_kbv and TouchScreen librairies for display handling.
by Patrick
Sat Oct 17, 2020 8:50 am
Forum: General discussion
Topic: MEM_TCP_PCB not declared
Replies: 8
Views: 3585

Re: MEM_TCP_PCB not declared

It's definitely a Sloeber problem. In STM32duino_LwIP/src/lwip/memp.h , LWIP_MEMPOOL macro is defined: /** Create the list of all memory pools managed by memp. MEMP_MAX represents a NULL pool at the end */ typedef enum { #define LWIP_MEMPOOL(name,num,size,desc) MEMP_##name, #include "lwip/priv/...
by Patrick
Fri Oct 16, 2020 6:46 pm
Forum: General discussion
Topic: MEM_TCP_PCB not declared
Replies: 8
Views: 3585

Re: MEM_TCP_PCB not declared

No.
Still at work?
by Patrick
Fri Oct 16, 2020 3:37 pm
Forum: General discussion
Topic: MEM_TCP_PCB not declared
Replies: 8
Views: 3585

Re: MEM_TCP_PCB not declared

No, Eclipse + Sloeber.
But where is declared MEM_TCP_PCB in this case?

Go to advanced search