User Activity

I'm using CubeIDE 1.15 with CubeMx plugin 6.11 to develop code for STM32H745.The clock resolve chooses 64MHz for USB:whereas the correct USB clock frequency is 48MHz:I would expect the clock configuration GUI to flag this issue for me and set up the ...
I'm using STM32CubeIDE and targeting STM32H745IIK6.  When I was using the CubeMx plugin version 6.10.0, I was able to enable the temperature sensor input on ADC3:After upgrading to CubeMx 6.11.0 with FW package H7_v1110.zip, this option (as well as t...
I am using HRTIM in my project such that the output TA1 of timer A generates a delayed pulse after the timer is triggered via the EEV1 input. I have two compare values defined in Advanced configuration mode: One to set the output high and the other t...
When running this code, I get only the first unsigned char value read from the input string, but not any subsequent ones: int main(void) { char* input = "0 1 2 3 4 5"; static volatile uint8_t data[6]; volatile int byte_read_count; memset(dat...
The function HAL_TIM_OnePulse_Start() only operates on channels 1 and 2.The comment inside it says:"in the OPM Mode the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2; if TIM_CHANNEL_1 is used as output, the TIM_CHANNEL_2 ...