Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
7 years, 1 month ago.
UART Connection
How to Establish serial communication between two Freescale Freedom development platforms using UART.
Using the touch slider from one of the Freedom boards you would change the colors of the LEDs on the other board, and make it bi-directional, in a way you can use the touch in any of the freedom board and have the same effect on the other side.
1 Answer
7 years, 1 month ago.
Please see the serial documentation - https://os.mbed.com/docs/v5.6/reference/serial.html
You'll want to wire the boards like this:
MBED1 RX => MBED2 TX
MBED1 TX => MBED2 RX
MBED1 GND => MBED2 GND
Then, you'll want to have code running on both that uses Serial objects to handle send/receive.