mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 11:08:34 +08:00
36 lines
607 B
Markdown
36 lines
607 B
Markdown
## 串口扩展函数
|
|
|
|
### 1.iostream\_serial\_create
|
|
|
|
> 创建串口输入输出流对象。
|
|
----------------------------
|
|
|
|
#### 原型
|
|
|
|
```js
|
|
istream_file_create(device, baudrate) => object
|
|
```
|
|
|
|
### 完整示例
|
|
|
|
```js
|
|
//
|
|
// start serial echo server first
|
|
// ./bin/serial_recv 4000
|
|
//
|
|
|
|
a = iostream_serial_create("/dev/ttys001", 0)
|
|
b = iostream_get_ostream(a)
|
|
c = iostream_get_istream(a)
|
|
|
|
assert(ostream_write_uint32(b, 6) == 4)
|
|
assert(ostream_write_string(b, "hello\n") == 6)
|
|
|
|
assert(istream_read_uint32(c, 3000) == 6)
|
|
assert(istream_read_string(c, 6, 3000) == "hello\n")
|
|
|
|
unset(c)
|
|
unset(b)
|
|
unset(a)
|
|
```
|