Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/SerialPorts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,26 @@ function in_dialout()
end
end

@doc """
Initialize a REPL. Calling conventions are identical to `SerialPort`.
""" ->
function REPL(s::SerialPort)
@async begin
while true
print(String(readavailable(s)))
end
end
while true
print_with_color(:magenta, "\nserial> ")
c = readline()
!isspace(c) && write(s, c) # Don't send newlines
end
end

function REPL(args...)
REPL(SerialPort(args...))
end

# Submodules

include("Arduino.jl")
Expand Down