#include #include #include #include "ip_arp_udp_tcp.h" #include "enc28j60.h" #include "timeout.h" #include "avr_compat.h" #include "net.h" //static uint8_t mymac[6] = {0x54, 0x55, 0x58, 0x10, 0x00, 0x24}; // mac[4] = 0x01 : YHome device // mac[5] = device id static uint8_t mymac[6] = {0x40, 0x00, 0x00, 0x00, 0x01, 0x01}; // 0x01 : EDF, 0x02 : Box, 0x03 : Tmp static uint8_t myip[4] = {192, 168, 0, 201}; // 201 : EDF, 202 : Box, 203 : Tmp ... #define MYWWWPORT 80 #define BUFFER_SIZE 550 static uint8_t buf[BUFFER_SIZE+1]; #define N_MES 4 typedef struct { uint16_t ips; // count per sec uint16_t msp; // 100us per imp uint16_t cnt; // 100us counter } Tmeasure; volatile Tmeasure measure[N_MES]; volatile float sensorips[N_MES] = {139.123, 139.123, 139.123, 139.123}; volatile uint16_t tcnt = 0; volatile uint8_t fetch = 0; volatile float I[N_MES]; SIGNAL(##INT) { uint8_t ch = ##get_ch(); measure[ch].ips++; measure[ch].msp = measure[ch].cnt; measure[ch].cnt = 0; } SIGNAL(TIMER0_COMPARE_A) { // Setup with compare TCNT0 = 0x00; uint8_t i; for(i=0; i measure[i].msp) { I[i] = measure[i].ips / sensorips[i]; }else{ I[i] = 10000 / (sensorips[i] * measure[i].msp); } fetch = 0; } plen = packetloop_icmp_tcp(buf, enc28j60PacketReceive(BUFFER_SIZE, buf)); if(plen == 0) continue; if(strncmp("GET ", (char *)&(buf[plen]), 4) != 0) { // head, post and other methods plen = fill_tcp_data_p(buf, 0, PSTR("HTTP/1.0 401 Unauthorized\r\nContent-Type: text/html\r\n\r\n

401 Unauthorized

")); }else if(strncmp("/ ", (char *)&(buf[plen+4]), 2) == 0) { // catch all plen = fill_tcp_data_p(buf, 0, PSTR("HTTP/1.0 200 OK\r\nContent-Type: text/plain\r\nPragma: no-cache\r\n\r\n")); for(i=0; i= 0x30) && (&(buf[plen+5]) <= 0x39)) { // specific sensor i = &(buf[dat_p+5]) - 0x30; plen = fill_tcp_data_p(buf, 0, PSTR("HTTP/1.0 200 OK\r\nContent-Type: text/plain\r\nPragma: no-cache\r\n\r\n")); if(i401 Unauthorized")); } www_server_reply(buf, plen); // send web page data } }