mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-01-11 23:53:16 +00:00
version 1.5.2 simulate higher baud rates up to 100000, default is 9600
This commit is contained in:
parent
9d13359eb1
commit
7a86592c11
@ -320,10 +320,11 @@ tek4010 has the following options:
|
||||
|
||||
-tab1 execute a blank instead of a tab to the next 8-character column
|
||||
|
||||
-b9600, -b4800, -b2400, -b1200, -b600, -b300
|
||||
-b100000, -b38400, -b19200, -b9600, -b4800, -b2400, -b1200, -b600, -b300
|
||||
Emulate a baud rate. Without one of these arguments, the baud rate
|
||||
is 19200 baud. The original Tektronix 4010 had a maximal baud rate
|
||||
of 9600 baud. With the small baud rates you can emulate 1970s
|
||||
of 9600 baud. The 4014 could support up to 100000 baud with a special
|
||||
interface. With the small baud rates you can emulate 1970s
|
||||
style modem performance. Early modems had a baud rate of 300.
|
||||
|
||||
-full in this mode the tek4010 emulator creates a full screen window, and
|
||||
|
||||
8
tube.c
8
tube.c
@ -281,7 +281,7 @@ void tube_init(int argc, char* argv[])
|
||||
char *argv2[20];
|
||||
size_t bufsize = 127;
|
||||
int firstArg = 1;
|
||||
printf("tek4010 version 1.5.1\n");
|
||||
printf("tek4010 version 1.5.2\n");
|
||||
windowName = "Tektronix 4010/4014 emulator";
|
||||
if ((argc<2) || (argc>19)) {
|
||||
printf("Error:number of arguments\n");
|
||||
@ -299,6 +299,12 @@ void tube_init(int argc, char* argv[])
|
||||
argRaw = 1;
|
||||
else if (strcmp(argv[firstArg],"-noexit") == 0)
|
||||
argNoexit = 1;
|
||||
else if (strcmp(argv[firstArg],"-b100000") == 0)
|
||||
argBaud = 100000;
|
||||
else if (strcmp(argv[firstArg],"-b38400") == 0)
|
||||
argBaud = 38400;
|
||||
else if (strcmp(argv[firstArg],"-b19200") == 0)
|
||||
argBaud = 19200;
|
||||
else if (strcmp(argv[firstArg],"-b9600") == 0)
|
||||
argBaud = 9600;
|
||||
else if (strcmp(argv[firstArg],"-b4800") == 0)
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
Version 1.5.2 of October 11, 2019
|
||||
================================
|
||||
- Simulate higher baud rates up to 100000 (Raspberry Pi 4 required)
|
||||
|
||||
Version 1.5.1 of October 8, 2019
|
||||
================================
|
||||
- Fixed a bug preventing the proper display of pictures with variable brightness
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user