STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Hello, Is there an example for the STM32H7 ETH HAL V11.0 (new reworked ETH driver) without the LWIP. All the example i found are coupled with the LWIP. Thanks.

Following function are tied to the LWIP functions and i do not want to use any LWIP etc...How to bypass that ?void HAL_ETH_RxAllocateCallback(uint8_t **buff) { struct pbuf_custom *p = LWIP_MEMPOOL_ALLOC(RX_POOL); if (p) { /* Get the buff fr...

FB__1 by Associate II
  • 1733 Views
  • 2 replies
  • 0 kudos

USB HS MSC ULPI speed optimization

Hi I finaly got my EMMC/SD Card project running. I can read write to my EMMC with ~30 MB/s on a stm32F4. At the moment my USB is too slow. In the forum I read that first thing to do is to multiply MSC_MEDIA_PACKET by 2,4,8, .... THe problem is that a...

MK..1 by Associate III
  • 777 Views
  • 1 replies
  • 0 kudos

Resolved! LwIP RTOS Home Page on NUCLEO-H723ZG not changing

Hi all,I'm trying to create a simple webpage server on a NUCLEO-H723ZG. I understand some basics, but overall I'm pretty new to all of this. So I'm starting from the LwIP Server Netconn RTOS example. If I load the default example to the board, it wor...

Newtham by Associate II
  • 1116 Views
  • 2 replies
  • 0 kudos

recording audio on STM32H735 discovery kit

Hey folks,I am trying to record the audio on STM32H735 discovery kit, but the callback functions (BSP_AUDIO_IN_TransferComplete_CallBack) never been called. I also tried the BSP example for the board; however the audio recording demo is not working t...