From 707b24dd07236243269cf092728f85172e94e8a4 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 8 Aug 2021 22:02:52 -0400 Subject: initial commit --- source/serial/tests/proof_of_concepts/mdc2250.cc | 1 + .../tests/proof_of_concepts/python_serial_test.py | 15 +++++++++++ source/serial/tests/proof_of_concepts/tokenizer.cc | 31 ++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 source/serial/tests/proof_of_concepts/mdc2250.cc create mode 100644 source/serial/tests/proof_of_concepts/python_serial_test.py create mode 100644 source/serial/tests/proof_of_concepts/tokenizer.cc (limited to 'source/serial/tests/proof_of_concepts') diff --git a/source/serial/tests/proof_of_concepts/mdc2250.cc b/source/serial/tests/proof_of_concepts/mdc2250.cc new file mode 100644 index 0000000..ff7ec1b --- /dev/null +++ b/source/serial/tests/proof_of_concepts/mdc2250.cc @@ -0,0 +1 @@ +#include "" \ No newline at end of file diff --git a/source/serial/tests/proof_of_concepts/python_serial_test.py b/source/serial/tests/proof_of_concepts/python_serial_test.py new file mode 100644 index 0000000..6f92b84 --- /dev/null +++ b/source/serial/tests/proof_of_concepts/python_serial_test.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +import serial, sys + +if len(sys.argv) != 2: + print "python: Usage_serial_test " + sys.exit(1) + +sio = serial.Serial(sys.argv[1], 115200) +sio.timeout = 250 + +while True: + sio.write("Testing.") + print sio.read(8) + diff --git a/source/serial/tests/proof_of_concepts/tokenizer.cc b/source/serial/tests/proof_of_concepts/tokenizer.cc new file mode 100644 index 0000000..da15a09 --- /dev/null +++ b/source/serial/tests/proof_of_concepts/tokenizer.cc @@ -0,0 +1,31 @@ +#include +#include +#include + +#include +#include +#include +#include + +void +_delimeter_tokenizer (std::string &data, std::vector &tokens, + std::string delimeter) +{ + boost::split(tokens, data, boost::is_any_of(delimeter)); +} + +typedef boost::function&)> TokenizerType; + +int main(void) { + std::string data = "a\rb\rc\r"; + std::vector tokens; + std::string delimeter = "\r"; + + TokenizerType f = boost::bind(_delimeter_tokenizer, _1, _2, delimeter); + f(data, tokens); + + BOOST_FOREACH(std::string token, tokens) + std::cout << token << std::endl; + + return 0; +} \ No newline at end of file -- cgit v1.2.3