I have been working on a F103 project for a few years. Recently I set up a new computer and copied my source code there to work with. I was able to build and run my project on the new computer just fine for a few months.Today, I wanted to do a quick ...
I'm making a simple USB MIDI implementation, and using a DAW to send note-on/note-off events from the computer to the device. The maximum packet size is 64 bytes, events are 4 bytes each so up to 16 events should fit in one packet.When I send one or ...
(STM32F103C8)My program continuously sends UART messages with regular blocking calls like this: HAL_UART_Transmit(&huart1, buf, size, timeout); The result on my logic analyzer normally looks like: I also handle interrupts coming from HAL_SPI_TxRx...
I'm trying a simple blinking LED on a STM32H743VIT6 with STM32CubeIDE 1.13.2, using the clock configuration wizard. When the clock rate is set to 90MHz everything is fine, but at 480MHz the program cannot get past the SystemClock_Config() call. When ...
I was using STM32CubeIDE 1.10.1 today, and something went strange with the .ioc editor. I was clicking on a pin to set it as GPIO_In, and suddenly the editor seemed to reset as if it had just been opened afresh (frame sizes reset and view position of...
The accepted solution here is rather poorly described, I'm not sure if it is even the solution either. There is some in-depth discussion on SO which might be useful: https://stackoverflow.com/questions/73742774/gcc-arm-none-eabi-11-3-is-not-implement...
After much confusion I discovered that of course this was my fault... again. My USB setup is actually non-trivial because it has multiple configurations including composite devices, and the configuration to use is chosen at startup depending on value...
Okay, this was my fault. I forgot that my main project starts from a bootloader in the first 16kb of flash space. When I uploaded the test project my bootloader was overwritten. When running via the IDE it's configured to start from the main app add...
The problem was SystemClock_Config() not working properly above certain clock speeds, causing the ST-Link to lose connection when the debug port didn't respond. I'll start a different thread for that. Almost a whole day spent and I'm only just gettin...
I'm getting the same problem, although on Linux, trying to flash a STM32H743VIT6 -------------------------------------------------------------------
STM32CubeProgrammer v2.14.0
-------------------...