00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 #include <stdio.h>
00057
00058 #include <avr/eeprom.h>
00059
00060 #include "contiki.h"
00061
00062
00063 #include "net/uip-fw-drv.h"
00064 #include "net/uaodv.h"
00065 #include "dev/slip.h"
00066 #include "dev/cc2420.h"
00067
00068 #include "dev/leds.h"
00069 #include "dev/xmem.h"
00070
00071 #include "codeprop/codeprop.h"
00072
00073
00074 struct uip_fw_netif cc2420if =
00075 {UIP_FW_NETIF(172,16,0,1, 255,255,0,0, cc2420_send_uaodv)};
00076
00077 static struct uip_fw_netif slipif =
00078 {UIP_FW_NETIF(0,0,0,0, 255,255,255,255, slip_send)};
00079
00080
00081 static u16_t panId = UIP_HTONS(0x2024);
00082
00083 #ifndef RF_CHANNEL
00084 #define RF_CHANNEL 15
00085 #endif
00086
00087 unsigned char ds2411_id[8] = { 0x00, 0x12, 0x4b, 0x00, 0x00, 0x00, 0x09, 0x04};
00088
00089 static void
00090 ds2411_init(void)
00091 {
00092 u8_t i, t;
00093 eeprom_read_block(ds2411_id, 0, 8);
00094 for (i = 0; i < 4; i++) {
00095 t = ds2411_id[i];
00096 ds2411_id[i] = ds2411_id[7 - i];
00097 ds2411_id[7 - i] = t;
00098 }
00099 }
00100
00101 int
00102 main(int argc, char **argv)
00103 {
00104
00105
00106
00107 cpu_init();
00108 clock_init();
00109 leds_init();
00110 leds_toggle(LEDS_ALL);
00111 slip_arch_init(BAUD2UBR(38400));
00112 printf("Starting %s "
00113 "($Id: gateway.c,v 1.4 2010/10/19 18:29:05 adamdunkels Exp $)\n", __FILE__);
00114 ds2411_init();
00115 cc2420_init();
00116 xmem_init();
00117 clock_wait(CLOCK_SECOND/10);
00118 leds_toggle(LEDS_ALL);
00119
00120
00121
00122
00123 printf("MAC %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x CHANNEL %d\n",
00124 ds2411_id[0], ds2411_id[1], ds2411_id[2], ds2411_id[3],
00125 ds2411_id[4], ds2411_id[5], ds2411_id[6], ds2411_id[7],
00126 RF_CHANNEL);
00127
00128 uip_ipaddr_copy(&uip_hostaddr, &cc2420if.ipaddr);
00129 uip_ipaddr_copy(&uip_netmask, &cc2420if.netmask);
00130 printf("IP %d.%d.%d.%d netmask %d.%d.%d.%d\n",
00131 uip_ipaddr_to_quad(&uip_hostaddr),
00132 uip_ipaddr_to_quad(&uip_netmask));
00133 cc2420_set_chan_pan_addr(RF_CHANNEL, panId, uip_hostaddr.u16[1], ds2411_id);
00134
00135
00136
00137
00138 process_init();
00139 process_start(&etimer_process, NULL);
00140
00141
00142 uip_init();
00143 uip_fw_default(&slipif);
00144 uip_fw_register(&cc2420if);
00145 tcpip_set_forwarding(1);
00146
00147
00148 process_start(&tcpip_process, NULL);
00149 process_start(&uip_fw_process, NULL);
00150 process_start(&slip_process, NULL);
00151 process_start(&cc2420_process, NULL);
00152 cc2420_on();
00153 process_start(&uaodv_process, NULL);
00154
00155
00156
00157
00158
00159
00160 printf("process_run()...\n");
00161 while (1) {
00162 do {
00163
00164 } while(process_run() > 0);
00165
00166 }
00167
00168 return 0;
00169 }