User Activity

Hello,which is the default struct fields alignment policy of GCC, on STM32 MCU? I have the following structure: typedef struct{  uint32_t   param1;  float      param2;  uint16_t   param3;} PARAM_T;  I expected a size of 10 bytes, but it is 12 instead...
Hello,I am dealing with fixed-point arithmetic calculations on STM32G0.To avoid integer overflow risks I have scaled properly all the values involved in calculations, but a mistake can be always possible...On Texas Instruments DSPs, I have the possib...
Hello,I have programmed one of the advanced timers in up/down mode and I have used one of the compare units to generate a PWM signal.I would also like to generate an interrupt on compare events, but only on the falling edges.Is it possible to specify...
Hello, I am developing an application, starting from stm32 empty project.The main file presents the following preprocessor header, that triggers the reported FPU initialization warning when I try to build the project.  #if !defined(__SOFT_FP__) && de...
Hello,I am using for the first time the FDCAN peripheral. I have configured it in classic CAN 2.0 mode and I have problems with transmission.In particular, when I start a transmission, nothing is output on the tx pin, and the TRP field in the FDCAN_T...