-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.dipswitch
41 lines (33 loc) · 1.27 KB
/
README.dipswitch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
The 8-pole dip switch is managed by firmware/uart.c.
The switches are numbered in this file as shown on the top of the switch body.
Switches 1 through 4 select the baud rate:
SW4 SW3 SW2 SW1 Baud
========================
ON ON ON ON = 110
ON ON ON OFF = 300
ON ON OFF ON = 600
ON ON OFF OFF = 1200
ON OFF ON ON = 2400
ON OFF ON OFF = 4800
ON OFF OFF ON = 9600
ON OFF OFF OFF = 19200
OFF ON ON ON = 38400
OFF ON ON OFF = 57600
OFF ON OFF ON = 115200
OFF ON OFF OFF = 230400
OFF OFF ON ON = 460800
OFF OFF ON OFF = 921600
OFF OFF OFF ON = 921600
OFF OFF OFF OFF = 921600
Switch 5 selects between hardware and software flow control.
SW5
===================================================================
OFF = Software flow control using XON / XOFF (in-band signaling)
ON = Hardware flow control using RTS / CTS (out-of-band signaling)
Flow control is only impemented on data sent from the computer to
the terminal. The terminal keyboard does not honor requests from
the computer to stop sending.
It is strongly recommended to use hardware flow control at the higher
baud rates. We seem to be able to keep up at 57600 baud and below, but
above that, hardware flow control is necessary.
The remaining switches are currently unallocated.