diff options
author | Nao Pross <naopross@thearcway.org> | 2017-08-23 16:43:56 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-08-23 16:43:56 +0200 |
commit | c7925cbb73f319a390507b33e4df44f106822683 (patch) | |
tree | b7890e18d481822e6f38f6739b43fbd9d02b587f /sw/programmer/linux/src/serial.c | |
parent | updated .gitignore (diff) | |
download | z80uPC-c7925cbb73f319a390507b33e4df44f106822683.tar.gz z80uPC-c7925cbb73f319a390507b33e4df44f106822683.zip |
new programmer interface for linux
there is a new program with GUI (gtk3) to send data to its avr
conterpart.
it needs to be tested, since there may be a few bugs in it;
building a GUI was a terrible idea.
Diffstat (limited to 'sw/programmer/linux/src/serial.c')
-rw-r--r-- | sw/programmer/linux/src/serial.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/programmer/linux/src/serial.c b/sw/programmer/linux/src/serial.c index 564676b..e2544be 100644 --- a/sw/programmer/linux/src/serial.c +++ b/sw/programmer/linux/src/serial.c @@ -1,6 +1,6 @@ #include "serial.h" -int serial_connect(const char *devpath, long baudrate) +int serial_open(const char *devpath, unsigned long baudrate) { int fd; struct termios tty; @@ -40,3 +40,4 @@ int serial_connect(const char *devpath, long baudrate) return fd; } + |