-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuart.stub.php
48 lines (40 loc) · 885 Bytes
/
uart.stub.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
<?php
/** @generate-function-entries */
namespace UART;
/**
* Base exception
*/
class Exception extends \Exception {}
class Serial {
/**
* Open a serial device at $device running at $baudRate.
*
* @param string $device Serial device path
* @param int $baudRate Baud rate in Hz
*
* @return void
*/
public function __construct(string $device, int $baudRate) {}
/**
* Sent a string to the serial device.
*
* @param string $string String to be sent
*
* @return void
*/
public function putString(string $string): 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 {}
}