// vim: set et sw=4 sts=4 :
+#include "debug.h"
+#include "leds.h"
#include "netdev.h"
#include "eth.h"
#include "ip.h"
#include "udp.h"
-#ifdef SDCC
-static xdata at 0x0080 byte leds0;
-static xdata at 0x00c0 byte leds1;
-#else
-static byte xdata leds0 _at_ 0x0080;
-static byte xdata leds1 _at_ 0x00c0;
-#endif
-
-#define leds(word) \
- do \
- { \
- leds0 = ~LOW(word); \
- leds1 = ~HIGH(word); \
- } \
- while (0)
-
-
-void sleep(unsigned char times)
-{
- unsigned int i;
- unsigned char j;
- for (i = 0; i < 0xffff; ++i)
- for (j = 0; j < times; ++j);
-}
-
void main(void)
{
// Apagamos todos los leds
- leds(0x0000);
+ leds(0);
// Inicializamos dispositivo de red
if (!netdev_init())
{
- leds(0xffff);
+ leds(0xFFFF);
while(1); // Si falla init nos quedamos bobos
}
while (1) // Forever
{
uint16 len = netdev_recv_start();
+ printb(len, 0x1);
if (!len) // no recibimos nada
- {
- netdev_recv_end();
- continue; // vamos de nuevo!
- }
+ goto drop; // Tiramos el paquete
+
+ // Tenemos algo!
+ //print(0x2);
// Parseamos cabecera ethernet
if (!eth_read_frame_header()) // No es un buen header
- {
- // Tenemos algo!
- netdev_recv_end(); // Tiramos el paquete
- continue; // Vamos de nuevo!
- }
+ goto drop; // Tiramos el paquete
+ //print(0x4);
// Vemos que protocolo transporta
switch (eth_proto)
{
case ETH_ARP: // FIXME, implementar ARP!
- netdev_recv_end(); // Tiramos el paquete
- continue; // Vamos de nuevo!
+ goto drop; // Tiramos el paquete
case ETH_IP:
+ //print(0x8);
// Parseamos cabecera IP
if (!ip_read_packet_header()) // No es un buen header
- {
- netdev_recv_end(); // Tiramos el paquete
- continue; // Vamos de nuevo!
- }
+ goto drop; // Tiramos el paquete
+ //print(0x10);
// Vemos que protocolo transporta
switch (ip_proto)
{
case IP_ICMP: // FIXME, implementar ICMP!
- netdev_recv_end(); // Tiramos el paquete
- continue; // Vamos de nuevo!
+ goto drop; // Tiramos el paquete
case IP_UDP:
+ //print(0x20);
// Parseamos cabecera UDP
if (!udp_read_dgram_header()) // No es un buen header
- {
- netdev_recv_end(); // Tiramos el paquete
- continue; // Vamos de nuevo!
- }
+ goto drop; // Tiramos el paquete
+ printb(udp_dgram_len, 0x40);
// TODO
// Nuestro protocolo, por ahora un simple echo!
for (len = 8; len < udp_dgram_len; len += 2) // 8 por la cabecera UDP
{
- leds(netdev_recv_word());
- sleep(5);
+ print(netdev_recv_word());
}
+drop:
+ netdev_recv_end();
}
}
}