Difference between revisions of "Why we add serial ports"

From Embedded Xinu
Jump to navigation Jump to search
m
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
A normal user will interact with the WRT54GL with a pretty web interface, which runs as a stripped down web server that listens to port 80 and provides access to basic configuration opitions.
+
{{Historical}}
  
When we load our own code to be executed, we are starting with a blank slate--anything we want the hardware to do we have to code ourselves.  This makes the first steps very difficult: we can't exactly check the web interface to see if we're doing things right.
+
A normal user will interact with the [[WRT54GL]] using a pretty web interface, which runs as a stripped down web server that listens to port 80 and provides access to basic configuration opitions.
  
How can we know that our code is working properly if there is no way of getting feedback?
+
When we load our own code to be executed, we are starting with a blank slate--anything we want the hardware to do we have to code ourselves.  This makes the first steps very difficult: we can't exactly check the web interface to see if we're doing things right.  How can we know that our code is working properly if there is no way of getting feedback?
  
Enter the serial console.  A serial connection is essentially two wires (transmit, and receive) over which two computers can agree on timing and transmit bytes to each other.  In our case, these bytes will represent characters, and the characters will be the output and input of a console.  LinkSys actually includes the hardware for two serial ports on the WRT54GL as headers on the circuit board.  OpenWRT (and LinkSys..?) runs a console on first serial port by default, so that once a serial connection is properly made, all one has to do is press enter for a console to appear.
+
Enter the serial console.  A serial connection is essentially two wires (transmit, and receive) over which two computers can agree on timing and transmit bytes to each other.  In our case, these bytes will represent characters, and the characters will be the output and input of a console.  LinkSys actually includes the hardware for two serial ports on the [[WRT54GL]] as headers on the circuit board.  OpenWRT (and LinkSys..?) runs a console on first serial port by default, so that once a serial connection is properly made, all one has to do is press enter for a console to appear.
  
 
The serial device is a much more basic service than say, communicating over the network, so it is a likely candidate for our first form of communication to achieve.  We could have also tried for maybe the LED lights, but it would be incredibly difficult to intepret output and also impossible to get input using them.  So the serial port was the goal.
 
The serial device is a much more basic service than say, communicating over the network, so it is a likely candidate for our first form of communication to achieve.  We could have also tried for maybe the LED lights, but it would be incredibly difficult to intepret output and also impossible to get input using them.  So the serial port was the goal.
 
== See also ==
 
* [[National Semiconductor 16550 UART]]
 
* [[UART Driver]]
 

Latest revision as of 21:46, 11 July 2007

✘ This page is currently inactive and is retained primarily for historical interest.
A historical page is usually one that is no longer maintained or no longer relevant.

A normal user will interact with the WRT54GL using a pretty web interface, which runs as a stripped down web server that listens to port 80 and provides access to basic configuration opitions.

When we load our own code to be executed, we are starting with a blank slate--anything we want the hardware to do we have to code ourselves. This makes the first steps very difficult: we can't exactly check the web interface to see if we're doing things right. How can we know that our code is working properly if there is no way of getting feedback?

Enter the serial console. A serial connection is essentially two wires (transmit, and receive) over which two computers can agree on timing and transmit bytes to each other. In our case, these bytes will represent characters, and the characters will be the output and input of a console. LinkSys actually includes the hardware for two serial ports on the WRT54GL as headers on the circuit board. OpenWRT (and LinkSys..?) runs a console on first serial port by default, so that once a serial connection is properly made, all one has to do is press enter for a console to appear.

The serial device is a much more basic service than say, communicating over the network, so it is a likely candidate for our first form of communication to achieve. We could have also tried for maybe the LED lights, but it would be incredibly difficult to intepret output and also impossible to get input using them. So the serial port was the goal.