X-Git-Url: https://git.llucax.com/z.facultad/66.09/etherled.git/blobdiff_plain/0052faf6d85ec776823a1a33efc8d911b4b4e2f6..d6c5f7cf0e7f53c9251477b092e8b208a313e928:/src/main.c?ds=sidebyside diff --git a/src/main.c b/src/main.c index 69e0a54..9714789 100644 --- a/src/main.c +++ b/src/main.c @@ -27,7 +27,7 @@ void main(void) // Comienza a 'dibujar' EA = 1; // Habilita interrupciones globalmente - //XXX TR2 = 1; // Pone a correr el 'dibujado' + ET2 = 1; // Pone a correr el 'dibujado' // Inicializo IP ip_addr_local[0] = 10; @@ -76,42 +76,37 @@ void main(void) // Procesamos comando ELP y obtenemos tamaño de la // respuesta len = elp_read_process_command(); - printb(len, 0x02); + //printb(len, 0x02); // Si el tamaño es 0, hubo error o no está soportado if (!len) goto drop; - print(0x0004); + //print(0x0004); // FIXME por ahora no tenemos forma de 'abortar' el // comando si el checksum es incorrecto, lo verificamos // por deporte. if (!udp_checksum_ok()) goto drop; - print(0x0008); + //print(0x0008); // Terminamos recepción netdev_recv_end(); - print(0x0010); + //print(0x0010); // Respuesta netdev_send_start(); eth_write_frame_header(); ip_packet_len = UDP_HEADER_SIZE + len; - printb(ip_packet_len, 0x20); + //printb(ip_packet_len, 0x20); ip_write_packet_header(); udp_dgram_len = len; - printb(udp_dgram_len, 0x40); + //printb(udp_dgram_len, 0x40); udp_write_dgram_header(); elp_write_response(); udp_write_checksum(ETH_HEADER_SIZE + IP_HEADER_SIZE); netdev_send_end(ETH_HEADER_SIZE + IP_HEADER_SIZE + UDP_HEADER_SIZE + len); - printb(ETH_HEADER_SIZE + IP_HEADER_SIZE - + UDP_HEADER_SIZE + len, 0x80); - //XXX - if (elp_command.set && (elp_command.var == ELP_VAR_PAUSE)) - TR2 = 1; } } continue;