User Activity

Hi all,I have a question regarding the control of the UART interrupt on the STM32F4.First let me describe the application:int main(void) {   SystemInit();   //Stream out Data via Uart via DMA HAL_UART_Transmit_DMA(&huart2, (uint8_t *)UARTMessage_out,...
Hi all,I have a question concerning the duration of float multiplication on the STM32F4. As far as I know, the chip has an FPU.I run the following code snippetfloat LagCompensator_process(LagCompensator_instance* S, float input) {   S->x2 = input;  ...