STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

How can I use sockets with LWIP and FreeRTOS?

I am trying to use Sockets under FreeRTOS. Currently can send data over UDP using netconn, but sockets only send information when two netconn messages are sent previous to the socket one. If some of the netconn_sendto(...) functions is commented, sen...

vicfer89 by Associate II
  • 1236 Views
  • 1 replies
  • 0 kudos

fatfs (sdmmc1) + freeRTOS( V2)

I am using NUCLEO-H743ZI2. I try to configure fatfs +freeRTOS on stm32cubeIDE(v1.7). It it quite easy to configure SDMMC1 with MDMA. the program works fine, however, after I introduce freeRTOS into my program. SDMMC doesn't work any more. I don't kn...

yang hong by Associate III
  • 523 Views
  • 1 replies
  • 0 kudos

Run DFUSE on STM32

I have a testbench? created with stm32f746 that calibrates stm32f070 devices. Testbench has USB HOST and calibrates USB HID Device. I also want to use possibility to update fw on device. Device has DFU STM bootloader. Is there any advices/ready libra...

SSham.1 by Associate
  • 360 Views
  • 0 replies
  • 0 kudos

Resolved! Is there an example of TCP/IP netconn client?

ip4_addr_t remote_ip; struct netconn *clientConn; IP4_ADDR(&remote_ip, 192, 168, 0, 11); clientConn = netconn_new(NETCONN_TCP); if(clientConn != NULL) { conn_err = netconn_connect(clientConn, &remote_ip, 8789); if(conn_err == ERR_OK) { netconn_...

CHan.2 by Associate II
  • 1337 Views
  • 2 replies
  • 0 kudos