mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
+ Add missing timestamp-format epoch; update send_ to use fsync and tcdrain like normal tty_sync does; rework read_line to save partial line at timeout
14 lines
261 B
Lua
14 lines
261 B
Lua
read(1000, 6000) -- initial config
|
|
send("\n")
|
|
msleep(100)
|
|
read(650, 60) -- main menu
|
|
send("S") -- S menu
|
|
msleep(30)
|
|
read(650, 60)
|
|
send("t") -- Parallel Value Table
|
|
read(650, 60)
|
|
while true do
|
|
msleep(1000)
|
|
send("t")
|
|
read(650, 50) -- repeat PVT forever
|
|
end
|