blob: 5e2a784853b22813e481aa152530dabd58096274 [file] [log] [blame]
oliverschmidt06437bc2004-07-15 00:31:10 +00001/*
2 * Copyright (c) 2004, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials provided
13 * with the distribution.
14 * 3. All advertising materials mentioning features or use of this
15 * software must display the following acknowledgement:
16 * This product includes software developed by Adam Dunkels.
17 * 4. The name of the author may not be used to endorse or promote
18 * products derived from this software without specific prior
19 * written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
22 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
25 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * This file is part of the Contiki desktop environment
34 *
oliverschmidt4d299e92004-09-12 20:03:56 +000035 * $Id: main.c,v 1.4 2004/09/12 20:03:56 oliverschmidt Exp $
oliverschmidt06437bc2004-07-15 00:31:10 +000036 *
37 */
38
oliverschmidtde98fae2004-07-31 14:47:56 +000039#include <stdlib.h>
40
oliverschmidt06437bc2004-07-15 00:31:10 +000041#include "ctk.h"
42#include "ctk-draw.h"
43#include "ek.h"
44
45#include "program-handler.h"
46
oliverschmidt06437bc2004-07-15 00:31:10 +000047#include "uip.h"
48#include "uip_arp.h"
49
50#include "resolv.h"
51
52#include "netconf-dsc.h"
53#include "www-dsc.h"
54#include "telnet-dsc.h"
55#include "email-dsc.h"
56#include "calc-dsc.h"
57#include "processes-dsc.h"
58#include "about-dsc.h"
59
60#include "clock.h"
61
62/*-----------------------------------------------------------------------------------*/
63clock_time_t
64clock_time(void)
65{
66 return clock();
67}
68/*-----------------------------------------------------------------------------------*/
oliverschmidt4d299e92004-09-12 20:03:56 +000069void ppp_arch_putchar(void) {}
70void ppp_arch_getchar(void) {}
oliverschmidt06437bc2004-07-15 00:31:10 +000071void
oliverschmidtde98fae2004-07-31 14:47:56 +000072main(int argc)
oliverschmidt06437bc2004-07-15 00:31:10 +000073{
oliverschmidtde98fae2004-07-31 14:47:56 +000074 u16_t addr[2];
75
76 if(argc != 2) {
77 cprintf("\n"
78 "usage: Contiki <addr>\n"
79 "\n"
80 " <addr> Host IP address of interface to be used by Contiki\n"
81 "\n"
82 "notes:\n"
83 "\n"
84 " - Contiki needs Windows 2000 or later to run.\n"
85 "\n"
86 " - Contiki needs administrative rights to run.\n"
87 "\n"
88 " - The IP address to be used by Contiki has to be different from the Host IP\n"
89 " address specified here.\n"
90 "\n"
91 " - Contiki doesn't respond to ARP requests for it's IP address. A workaround\n"
92 " is to add a static entry into the ARP cache of communication peers.\n");
93 exit(EXIT_FAILURE);
94 }
95
oliverschmidt06437bc2004-07-15 00:31:10 +000096 ek_init();
97 tcpip_init(NULL);
oliverschmidtde98fae2004-07-31 14:47:56 +000098
99 console_init();
oliverschmidt06437bc2004-07-15 00:31:10 +0000100 ctk_init();
101
102 resolv_init(NULL);
oliverschmidtde98fae2004-07-31 14:47:56 +0000103
oliverschmidt06437bc2004-07-15 00:31:10 +0000104 program_handler_init();
105
oliverschmidt4d299e92004-09-12 20:03:56 +0000106#if 1
oliverschmidtde98fae2004-07-31 14:47:56 +0000107 uip_ipaddr(addr, 192,168,0,3);
108 uip_sethostaddr(addr);
109
110/* uip_ipaddr(addr, 192,168,0,1); */
111/* resolv_conf(addr); */
112#endif
113
114 rawsock_service_init(NULL);
115
oliverschmidt06437bc2004-07-15 00:31:10 +0000116 program_handler_add(&netconf_dsc, "Network setup", 1);
117 program_handler_add(&www_dsc, "Web browser", 1);
118 program_handler_add(&telnet_dsc, "Telnet", 1);
119 program_handler_add(&email_dsc, "E-mail program", 1);
120 program_handler_add(&calc_dsc, "Calculator", 1);
121 program_handler_add(&processes_dsc, "Processes", 1);
122 program_handler_add(&about_dsc, "About Contiki", 0);
123
124 while(1) {
125 ek_run();
oliverschmidte80365d2004-08-12 22:53:22 +0000126
127 if(console_resize()) {
128 ctk_restore();
129 }
130
oliverschmidtde98fae2004-07-31 14:47:56 +0000131 _sleep(0);
oliverschmidt06437bc2004-07-15 00:31:10 +0000132 }
133}
134/*-----------------------------------------------------------------------------------*/