User Activity

I have two STM32 based development boards and would like to get CAN example (slightly modified) to work with a simple data packet of 2 bytes sent from one board to the other. But I detect no valid CAN frame on the bus.The setup is taken from here: ST...
Hi all,I am sending a message via USART from STM32F303 (later to be moved from STM32F3 to STM32F427) to an X86.The message consists of 2 parts payload + crc ,CRC is calculated on stm32 using crc hardware engine and calling CRC_CalcCRC/CRC_CalcCRC16bi...
I would like to perform DMA based memory to memory transfer between cores with interrupt generation on Transfer Complete. To start of with the project i used Demo code (STM32Cube_FW_H7_V1.7.0 -> Projects -> NUCLEO-H745ZI-Q-> Demonstrations) added mem...
I have transferred data from ADC-1/2/3 to M4, but i am unsure about how to transfer it to M7. There doesn't seem to be any reference anywhere. So if i want to do a DMA transfer from ADC-1/2 to M7, how should it be done ?
 have periodic tasks (with period set by timer interrupts) running on both cores and i want to exchange data between cores. Here is a simple example.. M7-- Does some calculations and generates a variable at 20KHz M4-- Has to use the above variable fo...