CUBEMX support for stm32H750?
Posted on July 13, 2018 at 22:20Any one have any info on when cubemx support for stm32h750 might be available?
Posted on July 13, 2018 at 22:20Any one have any info on when cubemx support for stm32h750 might be available?
Posted on July 03, 2018 at 15:21Hello,I have plenty of problems to debug on STM32F746-DISCO with openocd and eclipseThe most frequent is that, just after programming the Flash, the MCU goes directly on the Hard fault handler, and does not even go to...
When will the STM32H743VIH6 become available for samples from ST and general sales through distributors?
char recv_string[10];char data;int count = -1,i,data_check = -1;void USART3_IRQHandler(void) //my interrupt handler{ if(USART_GetITStatus(USART3,USART_IT_TXE)) { data = USART_GetChar(); if(data == 0x0D || data == 0x08) data_check = 1; e...
Under FREERTOS on UART3, I receive a 40 byte packet every 2.5ms @ 921600 baud . I programmed the Rx FIFO to interrupt at 1/2 level threshold. Everything works fine for about an hour. Then, for some reason, I get an overrun condition which seems to me...
Posted on April 05, 2018 at 17:03Hello,Following my question here https://community.st.com/0D50X00009XkWuQSAV , I'm able to receive data from the UART peripheral to the specified buffer.Now I'm trying to implement the same method described here http...
Hi I am hoping someone can help me with a frustrating problem. I have two boards setup with STM32F072C8 parts. I have downloaded the examples from ST which are for a larger footprint part and modified the code to run on the 48 pin parts. The loopback...
i am just executing a for loop of 4096 time. But it takes more than 1 ms in stm32f429zi series. Clock frequency is 180MHz. How it can take that much time or whether it is executing some other function in back end.
Hello,I need to use the example which boots (jumps) into application in external memory, but with a very slight modification:So that the start address of application can be somewhere inside the flash, not particulary at the start of flash, as it is n...