2016-12-15 08:30 PM
Since I want to send data from two board to a single device which will receive data from this two board and start its processing.so how I can send this data simultaneously to another device .
2016-12-16 12:02 AM
How do you communicate to your device? Analog, GPIO, UART, I2C, SPI...
Will this have to scale beyond 2 MCU boards?
2016-12-16 06:45 AM
I want to send data using GPIO, 2 MCU boards will send their data using GPIO but at the receiving end data should receive simultaneously.
2016-12-16 07:25 AM
Please elaborate, from what is explained, the understanding of the system needs details.
Same time, how much accurate?
If you have 2 MCU boards sending data at same time to a third one, just use 2 separate bus with an IO pin from receiver to tell 'send now'.
For example, use RS232 (USART) from each MCU to receiving party. Then the receiving party will use GPIO falling edge to say 'give me data'.
This will generate from each STM32 an EXTI interrupt and the RS232 can be enabled to send data out. The 'same time' will be at few microsecond accuracy...
Understanding the real need in the application will help to guide to a more suitable answer.
2016-12-18 09:55 PM
Thank you sir.