Printer Fix

Made small change to LPT driver code to make sure the first line is printed correctly.
This commit is contained in:
Peter Weingartner 2022-05-20 13:30:44 -04:00
parent dff1567153
commit 541451fbf9
4 changed files with 5073 additions and 5068 deletions

Binary file not shown.

View file

@ -46,6 +46,10 @@ short lpt_open(t_channel * chan, const uint8_t * path, short mode) {
lpt_initialize();
*LPT_CTRL_PORT = LPT_CTRL_mINIT | LPT_CTRL_SELECT;
// Write a dummy character to kick everything off
lpt_write_b(0, "\x00", 0);
return 0;
}

10135
src/mapfile

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,6 @@
#define VER_MAJOR 0
#define VER_MINOR 75
#define VER_BUILD 7
#define VER_BUILD 8
#endif