tree: 6132f701839632ea1dae1292b4d67c578c434753 [path history] [tgz]
  1. .gitignore
  2. flowc.h
  3. flowc_host.c
  4. flowc_mktestdata.c
  5. flowc_receiver.c
  6. flowc_sender.c
  7. flowc_target1.c
  8. flowc_target2.c
  9. Kconfig
  10. Make.defs
  11. Makefile
  12. README.md
  13. testdata.dat
examples/flowc/README.md

Examples / flowc

General Usage Instructions:

  1. The receiver side enter, start the receiver program. The receiver is now waiting to receive data on the configured serial port.
  2. On the sender side start the sender program. This will send data to the receiver which will verify that no data is lost.

On Linux, you can alternatively do:

$ stty -F /dev/ttyACM0 crtscts
$ cat testdata.dat >/dev/ttyACM0

where you need to replace /dev/ttyACM0 with your selected serial device.