User Activity

(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 uninstaller.bat uses a temporary folder like:set tmp_dir="C:\Users\%USERNAME%\AppData\Local\Temp\MX-JRE-%random%%random%"Which on my computer becomes like:"C:\Users\HP 8460p1\AppData\Local\Temp\MX-JRE-73025091"Then it tries to use xcopy with this...
Can anyone tell me why the value of 'c' here should be NaN ??On other platforms I get the same result for 'a' and 'c', as expected.#include <math.h>   float a = atanf( -1.0f ); // returns -0.785398185   float b = -1.0f; float c = atanf( b ); // retur...
Kudos given to