Skip to content
Snippets Groups Projects
Commit 8774c43f authored by Bernard Blackham's avatar Bernard Blackham
Browse files

Spell some things out, but don't be quite so verbose in other places

parent 8e227175
Branches
Tags
No related merge requests found
......@@ -155,7 +155,7 @@ int main() {
_io_ports[M6811_PORTA] = 0xc0; /* display on. talking to serial port */
_io_ports[M6811_DDRA] = 0xfc;
_io_ports[M6811_DDRD] = 0x3e;
_io_ports[M6811_SPCR] = 0x12;
_io_ports[M6811_SPCR] = M6811_MSTR | M6811_SPR1;
set_misc_output(0x00);
display_init();
......@@ -192,11 +192,7 @@ int main() {
last_door_open = door_open();
send_door_msg(last_door_open);
chime_start();
if (last_door_open) {
set_msg("DOOR OPEND");
} else {
set_msg("DOOR CLOSE");
}
set_msg(last_door_open?"DOOR OPEN ":"DOOR CLOSE");
}
if (sci_have_packet) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment