129 lines
2.9 KiB
Swift
129 lines
2.9 KiB
Swift
import Foundation
|
|
import SwiftSerial
|
|
|
|
|
|
let arguments = CommandLine.arguments
|
|
guard arguments.count >= 2 else {
|
|
print("Need serial port name, e.g. /dev/ttyUSB0 or /dev/cu.usbserial as the first argument.")
|
|
exit(1)
|
|
}
|
|
|
|
print("Connect a null modem serial cable between two machines before you continue to use this program")
|
|
|
|
let portName = arguments[1]
|
|
let serialPort: SerialPort = SerialPort(path: portName)
|
|
|
|
var myturn = true
|
|
|
|
// Prepares the stdin so we can getchar() without echoing
|
|
func prepareStdin() {
|
|
|
|
// Set up the control structure
|
|
var settings = termios()
|
|
|
|
// Get options structure for stdin
|
|
tcgetattr(STDIN_FILENO, &settings)
|
|
|
|
//Turn off ICANON and ECHO
|
|
settings.c_lflag &= ~tcflag_t(ICANON | ECHO)
|
|
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &settings)
|
|
}
|
|
|
|
func getKeyPress () -> UnicodeScalar {
|
|
let valueRead: Int = Int(getchar())
|
|
|
|
guard let charRead = UnicodeScalar(valueRead) else{
|
|
return UnicodeScalar("")!
|
|
}
|
|
|
|
return charRead
|
|
}
|
|
|
|
func printToScreenFrom(myself: Bool, characterToPrint: UnicodeScalar){
|
|
|
|
if(myturn && !myself){
|
|
myturn = false
|
|
print("\n\nOther: ", terminator:"")
|
|
} else if (!myturn && myself){
|
|
myturn = true
|
|
print("\n\nMe: ", terminator:"")
|
|
}
|
|
|
|
print(characterToPrint, terminator:"")
|
|
}
|
|
|
|
func backgroundRead() {
|
|
while true{
|
|
do{
|
|
let readCharacter = try serialPort.readChar()
|
|
printToScreenFrom(myself: false, characterToPrint: readCharacter)
|
|
} catch {
|
|
print("Error: \(error)")
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
print("Attempting to open port: \(portName)")
|
|
try serialPort.openPort()
|
|
print("Serial port \(portName) opened successfully.")
|
|
defer {
|
|
serialPort.closePort()
|
|
print("Port Closed")
|
|
}
|
|
|
|
serialPort.setSettings(receiveRate: .baud9600,
|
|
transmitRate: .baud9600,
|
|
minimumBytesToRead: 1)
|
|
|
|
prepareStdin()
|
|
|
|
|
|
//Turn off output buffering if not multiple threads will have problems printing
|
|
setbuf(stdout, nil);
|
|
|
|
|
|
//Run the serial port reading function in another thread
|
|
#if os(Linux)
|
|
var readingThread = pthread_t()
|
|
|
|
let pthreadFunc: @convention(c) (UnsafeMutableRawPointer?) -> UnsafeMutableRawPointer? = {
|
|
observer in
|
|
|
|
backgroundRead()
|
|
return nil
|
|
}
|
|
|
|
pthread_create(&readingThread, nil, pthreadFunc, nil)
|
|
|
|
#elseif os(OSX)
|
|
DispatchQueue.global(qos: .userInitiated).async {
|
|
backgroundRead()
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
print("\nReady to send and receive messages in realtime!")
|
|
print("\nMe: ", terminator:"")
|
|
|
|
|
|
while true {
|
|
var enteredKey = getKeyPress()
|
|
printToScreenFrom(myself: true, characterToPrint: enteredKey)
|
|
var _ = try serialPort.writeChar(enteredKey)
|
|
}
|
|
|
|
|
|
} catch PortError.failedToOpen {
|
|
print("Serial port \(portName) failed to open. You might need root permissions.")
|
|
} catch {
|
|
print("Error: \(error)")
|
|
}
|
|
|
|
|