The post is a derivative of the omapzoom wiki page . Disclaimer: my mastery of the wiki tags are dismal.. apologies... some day i hope to have time to post it here Many new developers have been stumped when they need to use git-send-email in corporate environment – usually, if not as a norm, ms exchange servers form the backbone of such an email server system. This page was written based on one of such requirements. To get started, we shall consider common scenarios: a) Setting up a mail forwarding system with postfix on ubuntu b) Setting up a mail forwarding system on a fedora machine c) Using msmtp for using gmail a. to send a patch using a gmail ID b. to send a patch using your corporate ID but through gmail Postfix on Ubuntu – mail forwarding For setting up postfix, you need: a) A mail relay server which will allow your machine to talk to it -> speak to your IT representatives/ other developers sitting next to you b) Super user privileges on the machine you are working on. Step...
Comments
g.|s.
using stty and direct file access
Example:
stty --save -F /dev/ttyUSB0
1:0:18b2:0:3:1c:7f:15:1:5:1:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0
This gives you the settings which you can use to reprogram the tty at a later point of time. so my fav technique is to first use minicom to set everything up, dump with stty as above..
I=`sudo stty --save -F /dev/ttyUSB0`
stty -F /dev/ttyUSB0 $I
now to dump the serial port:
cat /dev/ttyUSB0
or write to serial port:
echo "ls">/dev/ttyUSB0
Thanks.