Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
518 views

Python TTY Control

I guess I'm not clear on what what the function of the getty/agetty/mgetty programs are on a linux/unix machine. I can start a shell on a tty with something like this: TTY = '/dev/tty3' cpid = ...
3
votes
2answers
1k views

Linux: Pipe into Python (ncurses) script, stdin and termios

Apparently this is almost a duplicate of "Bad pipe filedescriptor when reading from stdin in python - Stack Overflow"; however, I believe this case is slightly more complicated (and it is not Windows ...
3
votes
3answers
569 views

Linux Terminal Problem with Non-Canonical Terminal I/O app

I have a small app written in C designed to run on Linux. Part of the app accepts user-input from the keyboard, and it uses non-canonical terminal mode so that it can respond to each keystroke. ...
2
votes
1answer
118 views

reading serial port blocks for unknown reason

I am trying to interface a contact-less smart card reader over UART (usbserial) using termios framework under Linux. The code works fine on the PC, but when I cross-compile and try it out on an ARM9 ...
2
votes
1answer
194 views

C read call blocking on serial port operation

I am trying to write a C program in Linux to send and receive data from a microcontroller over the serial port. As a test, I have configured the microcontroller to immediately echo all characters ...
1
vote
2answers
96 views

read() on stdin returning EOF instead of waiting for input

Does anyone know why running the following code may cause all future read() calls on that fd (which is stdin) to immediately return 0 instead of blocking for input? termios newTerminalSettings; ...
1
vote
1answer
438 views

asynchronous serial transmission C

So i'm working on a program, wich is vaguely going to resemble Br@y's Terminal, but running from the commandline in linux It will do asynchronous transmission, out the serial (Com) port. Now i think ...
0
votes
1answer
65 views

Check for extra characters in Linux terminal buffer

I try to implement getch() function in Python, which should also return list of chars for special keys like F1-F12 and arrow keys. These special keys generate several chars in a sequence. Therefore ...
0
votes
2answers
102 views

How to differentiate between Escape and Up/Down/Left/Right with termios?

GitHub This is the best I can come up with to handle ncurses-style key presses (I'm actually writing an alternative to ncurses for various reasons). An example app built with this code advises the ...
0
votes
1answer
418 views

Why does open()ing a Linux tty hang after killing a process which configured it?

I want to set a serial port in Linux to "raw" mode at 115200 baud. If I run the following program #include <stdio.h> #include <termios.h> #include <unistd.h> #include ...
0
votes
1answer
90 views

serial data truncated by termios on embedded device

I am working on a C program listening to the serial port running on an ARM Linux embedded device. Other sets of data work fine, but always when I send a particular set of data, the beginning of the ...
0
votes
3answers
261 views

How to change termios configuration, so that getc() immediately returns when user presses <tab> key?

I want to implement auto-completion feature for my CLI application. The default behavior of getc() is returning only when the following list of characters are entered: NEW_LINE or EOF. I want to add ...
0
votes
1answer
1k views

Linux termios VTIME not working?

We've been bashing our heads off of this one all morning. We've got some serial lines setup between an embedded linux device and an Ubuntu box. Our reads are getting screwed up because our code ...