I work with Blue pill and st-link today..the first time it worked OK, but now it has not worked again and I did not modify anything..did that happen to anyone else?
Error say: failed to start GDB server error
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
Error say: failed to start GDB server error
Dear,I have an issue about the embedded ST bootloader on the STM32F769. I'm not able to communicate with it.On a custom board, I use a STM32F769BG connected to the USART 1 (PA9 / PA10). When I send the 0x7F value, I don't have a response from the MCU...
Hi,I'm using bno055 with stm32f402, and this IMU works in i2c, responding very slow to ackloledge/answer (few tenth of ms).I tryed to use it in blocking mode in freertos, but very quickly, I check more than 1ms of data... it's too slow, and freertos ...
Does the ST plan to update the FatFs and FreeRTOS library in STMF7?
Hi, for my project I need to have two usb ports used in Device and Host mode..I thought I would use STM32F411 or 12 and HUB USB Microchip SQFN-24.It's possible to do this with HAL library?Thanks in advance for answer.
Hello,I have a use case to start user boot loader from 0x08020000 instead of 0x08000000 and 0th sector at 0x08000000 will be used to store read protected user data because of the sector size.As per guidance from @Community member , i have made chang...
The demo software worked except for the image and video display. No suitable files. This demo was deleted and replaced by Tilen Majerle gitub usb dual host bin application using stm32cube programmer. Issue one, only some usb memory sticks work. A...
Hi,I met a strange issue and wish to get help.I wish to connect PC by UART. I try to use DMA but failed.The following is my test code for DMA.main () { initialization code from CubeMX HAL_UART_Transmit_DMA(&UART_Handle_Console, (uint8_t*)(listbuf...
Hi I am developing the project with STM32F746 (STMCUBE IDE)sending the data to the server . want to use WEBSOCKET protocol to do this Is there any Library with example for WEBSOCKET with LWIP in STM32
HI, I am using Macro to set and clear my pin using stm32f103. This is the macro i defined#define SET(PIN,N) (PIN |= (1<<N))#define CLR(PIN,N) (PIN &= ~(1<<N))where ,PIN is the value whose bit to set or/and clearN is the bit number to set or/and cle...