STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

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
  • 1052 Views
  • 2 replies
  • 0 kudos

fmc operations cause mcu reset repeatly

Hi everyone,I met a problem now. I am developing display product using stm32f429zet6, the lib is f41.26.1. In my project, nand flash is used to storage images and fonts, the sdram is used to cache images. Fatfs work upon nand. Obviously nand and sd...

JJ.Lin by Associate III
  • 1140 Views
  • 6 replies
  • 0 kudos

STM32F746 bootloader question

Hi,I am using STM32F746NG.In the app link file, I set flash to 0x08010000.MEMORY{ RAM  (xrw)  : ORIGIN = 0x20000000,  LENGTH = 320K FLASH  (rx)  : ORIGIN = 0x8010000,  LENGTH = 960K /*1024-64K*/}In the boot link file, I set flash to 0x08000000.MEMORY...

JChen.24 by Associate III
  • 410 Views
  • 1 replies
  • 0 kudos

Carte NUCLEO-H723 non reçue

Bonjour,Pour le workshop du 6 juillet j'ai reçu une NUCLEO-G491, sur laquelle Azure RTOS ne fonctionne pas.J'avais compris que je recevrais quand même la carte NUCLEO-H723, parce que Azure RTOS ne fonctionne aujourd'hui que sur H7.Est ce qu'il y a de...