onyx-serial 0.5.0

Serial port interface by D


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

onyx-serial

onyx-serial: the simple serial port library by D.

Key features:

  • Open/close serial port.
  • Write/read to/from serial port.
  • Setup speed - standard value from 50 to 4,000,000.
  • parity - none, odd, even.
  • Setup read timeout in mS.
  • Check is port open.
  • Work on posix OS (Linux, OSX, FreeBSD).

Examples:

	import onyx.serial;

	/* Create ports */
	auto port1 = OxSerialPort("dev/ttyS1", Speed.B9600, Parity.none, 1000);
	auto port2 = OxSerialPort("dev/ttyS2", Speed.B9600, Parity.none, 1000);


	port1.open;
	port2.open;

	ubyte[] data = [0x22, 0x33, 0xCC];

	port1.write(data);

	ubyte[] buf = port2.read(3);

	assert (buf == data);

	port1.close();
	port2.close();

	string[] s1 =
		["[port]",
		 "name = /dev/ttyr06",
		 "speed = 57600",
		 "parity = none",
		 "time_out = 1500"];

	auto bundle = new immutable Bundle(s1);

	auto port3 = OxSerialPort(bundle);


	auto bundle = new immutable Bundle("./config/port4.conf");

	auto port4 = OxSerialPort(bundle);

Authors:
  • Oleg Nykytenko
Dependencies:
onyx-config
Versions:
0.5.3 2021-Mar-09
0.5.2 2020-May-31
0.5.1 2018-Dec-25
0.5.0 2016-Jun-03
0.4.0 2016-May-12
Show all 30 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 776 downloads total

Score:
1.2
Short URL:
onyx-serial.dub.pm