Commit Graph

799 Commits (master)

Author SHA1 Message Date
adamdunkels 6a81c10756 Treeroute implemented with Rime 2007-03-14 01:05:23 +00:00
oliverschmidt 9dff20305f How were the references to shell.h and shell.c supposed to be resolved without bringing in apps/shell ?!? 2007-03-03 13:26:29 +00:00
oliverschmidt ce66abfe48 It simply doesn't make sense to link in both webserver.c and webserver-nogui.c. This raises the question if examples/webserver was tested at all ;-) 2007-03-03 12:42:56 +00:00
bg- f51c7f03df * Add some assertions. 2007-01-12 18:16:56 +00:00
bg- 8944a3f6c8 More'or less a verbatim copy of the traditional elfloader but built
upon cmod and cle.
2007-01-05 17:46:26 +00:00
oliverschmidt 074e74a584 Avoid generating new CTK events if process_exit() and LOADER_UNLOAD() was already called. 2006-12-29 23:05:19 +00:00
bg- e3a501a8c1 * Resurrect traditional elfloader interface. 2006-12-20 13:38:33 +00:00
fros4943 93714fc39f updated reference to "elfloader-tmp" 2006-12-18 15:17:47 +00:00
oliverschmidt acade90174 Removed inconsistent source formatting. 2006-10-06 21:39:45 +00:00
oliverschmidt eac68071eb Changed the maximum length of a single word from 40 to match the page width. Browsers wider than 40 cols can now render longer words. Browsers smaller than 40 cols avoid display inconsistencies on long words (and save memory). Additionally simplified word truncation code. 2006-10-06 21:34:59 +00:00
oliverschmidt 0a1e2d7b3e Discard word right in fromt of </script>, </style> and </select>. 2006-10-06 21:30:41 +00:00
oliverschmidt 51aacc981b Removed now unused var. 2006-10-06 21:28:18 +00:00
oliverschmidt e8ff2ba595 With the change to always position the cursor at the end of the exsisting text on entering the textentry field edit state it became necessary to avoid initializing textentry fields with blanks insteads of zeros.
Unfortunately I overlooked the dynamically created textentry fields for web forms. Changing their behaviour was a little more complicated as the length of the existing text was used to determine the size of the textentry field. Now this size is passed explicitly.
2006-10-06 21:14:28 +00:00
oliverschmidt 21459934b6 Don't close directory if it isn't open. 2006-10-06 20:48:12 +00:00
adamdunkels b07db591e6 Moved to platform/esb/apps 2006-10-06 06:58:08 +00:00
adamdunkels f3e5126a8c Quick program for testing radio connectivity 2006-10-05 09:23:54 +00:00
adamdunkels 1ab2bba7b8 Fix for bug when script goes past the end of a file (thanks to Till Harbaum) 2006-09-20 19:18:56 +00:00
adamdunkels cf57e00d60 uip_ipaddr_t changes fixed thanks to Marcelo Barros 2006-09-20 19:06:41 +00:00
oliverschmidt 3e92f843ba More uip_ipaddr_t fixes. 2006-09-18 23:27:42 +00:00
oliverschmidt fca710e447 More uip_ipaddr_t fixes and removal of the last occurances of WITH_ETHERNET. 2006-09-18 22:48:05 +00:00
oliverschmidt b55b0e0367 Added quit menu option. 2006-08-30 22:40:58 +00:00
oliverschmidt 5235bed2b2 The Contiki 2.x process entity doesn't contain a process id anymore. Therefore processes are killed by name rather then by id. 2006-08-30 22:06:18 +00:00
oliverschmidt 9438981e4d The Contiki 2.x process entity doesn't contain a process id anymore. Therefore successive numbers are assigned dynamically to the listed processes for selection purposes. 2006-08-27 15:15:46 +00:00
oliverschmidt 424fde144d Added the CCIF (Contiki Core InterFace) declarations used by the applications which are currently part of the Win32 build. 2006-08-26 23:54:00 +00:00
oliverschmidt e5ba526b5b More uip_ipaddr_t fixes. 2006-08-26 23:20:44 +00:00
oliverschmidt a6d9a8d5dd More uip_ipaddr_t fixes. 2006-08-26 23:08:32 +00:00
oliverschmidt 434eb410e1 Avoid compiler warnings. 2006-08-21 21:45:25 +00:00
oliverschmidt 972e458edf Avoid compiler warning. 2006-08-21 21:44:13 +00:00
oliverschmidt 105e4a8aa3 More uip_ipaddr_t fixes and removal of the last occurances of WITH_UIP. 2006-08-21 21:42:40 +00:00
oliverschmidt 7d0371fa0a Avoid compiler warnings. 2006-08-21 21:39:01 +00:00
oliverschmidt df0bcd5555 More uip_ipaddr_t fixes (and avoid compiler warning). 2006-08-21 21:37:37 +00:00
oliverschmidt 5c83d00fb4 Avoid compiler warning. 2006-08-21 21:36:18 +00:00
oliverschmidt 92e39a92a1 Avoid compiler warnings. 2006-08-21 21:32:24 +00:00
oliverschmidt a89fd34530 Made declaration match definition. 2006-08-21 21:31:34 +00:00
oliverschmidt 1f7391e7de Avoid compiler warnings. 2006-08-16 22:09:51 +00:00
oliverschmidt d4a00f67fe The program_handler_add() mechanism relied on being used after the initialization of the program_handler (and the ctk) process but before entering the event handling. In Contiki 2.x there's no such explicit process initialization anymore - and the implicit asynchronous initialization runs after program_handler_add(). Therefore the initialization of the data structures modified by program_handler_add() had to be removed from that asynchronous process initialization. Instead C-langugae global data.initialization is used. 2006-08-15 00:11:45 +00:00
oliverschmidt 5bd04b9c0d Avoid compiler warnings. 2006-08-14 23:31:40 +00:00
oliverschmidt 7eeed4d6af Reactivated application core functionality (and avoid compiler warning). 2006-08-13 14:02:07 +00:00
oliverschmidt 8594c5f75f Added header necessary for petsciiconv_toascii(). 2006-08-13 13:59:07 +00:00
bg- fb94d50410 Change typedef of uip_ipaddr_t from a vector type to a union.
typedef union uip_ip4addr_t {
  u16_t u16[2];
  u8_t  u8[4];
} uip_ip4addr_t;

typedef uip_ip4addr_t uip_ipaddr_t;

This implies that one must consistently pass pointers to
uip_ipaddr_t:s and not mix and match pointers with
uip_ipaddr_t:s as was done earlier.
2006-08-09 16:13:39 +00:00
bg- 4eee7b8bf4 Slightly outdated versions were imported to sf. 2006-08-02 14:33:36 +00:00
nifi cb3f6db77e fixed compiler warnings 2006-07-06 14:55:21 +00:00
adamdunkels d36939f5ae Simple program for loading a Contiki ELF binary over the network 2006-06-18 07:44:36 +00:00
adamdunkels 964fa62827 VNC viewer 2006-06-17 23:08:35 +00:00
adamdunkels 4dcbd9845c Added handling of dhcp_unconfigured events 2006-06-17 23:08:16 +00:00
adamdunkels cbb910ab52 Added arg.c 2006-06-17 23:08:04 +00:00
adamdunkels dfd8026afc Removed old contiki-1.x-based code 2006-06-17 23:07:35 +00:00
adamdunkels 55769464f4 Fixed include paths 2006-06-17 23:01:48 +00:00
adamdunkels c9e808d638 Import of the contiki-2.x development code from the SICS internal CVS server 2006-06-17 22:41:10 +00:00