-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Serial.php
54 lines (47 loc) · 1007 Bytes
/
Serial.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace UART;
final class Serial {
/**
* Open a serial device at $device at $baudRate Hz.
*
* @param string $device Serial device path
* @param int $baudRate Baud rate in Hz
*
* @return void
*/
public function __construct(string $device, int $baudRate) {}
/**
* Return the serial device path.
*
* @return string
*/
public function getDevice(): string {}
/**
* Return the baud rate speed in Hz.
*
* @return int
*/
public function getBaudRate(): int {}
/**
* Sent a string to the serial device.
*
* @param string $data Data to be sent
*
* @return void
*/
public function putString(string $data): void {}
/**
* Return a string from the serial device with up to $maxLen characters.
*
* @param int $maxLen Max length
*
* @return string
*/
public function getString(int $maxLen): string {}
/**
* Flush the Tx/Rx buffers.
*
* @return void
*/
public function flush(): void {}
}