More things to hopefully make this work.
[uccvend-snackrom.git] / ROM2 / main_basic.c
index b2923bc..3e88648 100644 (file)
@@ -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();
@@ -163,6 +163,9 @@ int main() {
 
        unlock(); /* enable interrupts */
 
+       delay(1000);
+       set_msg("  CRUEL   ");
+
        //comm_init();
        //coinmech_init();
        sci_init();
@@ -172,15 +175,14 @@ int main() {
 
        delay(1000);
 
-       set_msg("  CRUEL   ");
-
-       delay(1000);
-
        set_msg("   WORLD  ");
        delay(1000);
 
        chime_start();
 
+       my_strncpy(sci_tx_buf, "5N4X0RZRUS\n", BUFFER_LEN);
+       send_packet();
+       
        cur_motor[0] = 0xff;
        while(1) {
                if (cur_motor[0] == 0xff) { /* signal to say redraw screen */
@@ -192,11 +194,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) {

UCC git Repository :: git.ucc.asn.au