by default software flow control is enabled, how to disable?
minicom -b 9600 -o -D /dev/ttyAMA0 rtscts
wfm
but using termios this does not:
struct termios options;
tcgetattr(fd, &options);
options.c_iflag &= ~(IXON|IXOFF|IXANY);
cfsetispeed(&options, B9600);
cfsetospeed(&options, B9600);
tcsetattr(fd, TCSAFLUSH, &options);
I tried various combinations without success
thanks
Jonathan