oliverschmidt
9399718ede
Cosmetic change...
2007-05-29 22:25:49 +00:00
oliverschmidt
b23f4fc89d
Added a Contiki clock_time() implementation based on the cc65 clock() implementation.
2007-05-29 21:56:21 +00:00
oliverschmidt
c874d56f32
Clock implementations are typically not located in a lib subdirectory.
2007-05-27 21:29:18 +00:00
oliverschmidt
75f04995a9
Changed packet drivers from services to plain processes.
...
Now tcpip_output() is a function pointer that is supposed to be set via the macro tcpip_set_outputfunc(). Packet drivers do so on process startup.
Thus if there are several packet drivers in a Contiki system the one started last is the one actually used. This behaviour is especially useful for the 'IP forwarding' "meta" packet driver.
2007-05-26 23:05:36 +00:00
oliverschmidt
6ab3a6d1e3
Fixed copy&paste bug.
2007-05-26 22:51:38 +00:00
oliverschmidt
f0d5a14745
Moved into backyard as it was never ported to Contiki 2.x.
2007-05-26 21:28:30 +00:00
adamdunkels
2c53a38075
Architecture dependent code for the CC2420 driver
2007-05-25 08:07:54 +00:00
oliverschmidt
9ab8b78381
Moved cc65 loader requiring "labels hack" into backyard.
2007-05-23 23:49:45 +00:00
oliverschmidt
a22c543b1a
Moved cc65 specific app into backyard.
2007-05-23 23:47:16 +00:00
oliverschmidt
1629c207b5
That PROCESS_EXITHANDLER() thing was after all kind of overengineered...
2007-05-23 22:13:29 +00:00
oliverschmidt
0bf8c95b79
Made use of exit handler.
2007-05-22 22:01:03 +00:00
adamdunkels
00b1e371cf
Added energy estimation, disabled IRQs for A/D converting as it used close to 100% CPU time
2007-05-22 21:01:32 +00:00
adamdunkels
3872d004bc
Reading timer now quicker, embryo for possible future drift configuration
2007-05-22 21:00:09 +00:00
adamdunkels
432d242a3c
Added energy estimation, embryo for possible future drift configuration
2007-05-22 20:59:47 +00:00
adamdunkels
9a5bac6282
Added energy estimation
2007-05-22 20:59:11 +00:00
bg-
3f4ec3cf44
* Use _end rather than nonstandard __bss_end.
2007-05-21 15:29:46 +00:00
bg-
d68e4bd3df
* Add missing file.
2007-05-21 14:28:14 +00:00
oliverschmidt
5f3296e943
Changed packet drivers from services to plain processes.
...
Now tcpip_output() is a function pointer that is supposed to be set via the macro tcpip_set_outputfunc(). Packet drivers do so on process startup.
Thus if there are several packet drivers in a Contiki system the one started last is the one actually used. This behaviour is especially useful for the 'IP forwarding' "meta" packet driver.
2007-05-20 21:29:39 +00:00
oliverschmidt
61f54204d7
Improved map file naming consistency.
2007-05-19 21:46:43 +00:00
oliverschmidt
51509fa49a
Added dummy value to allow for building.
2007-05-19 13:20:37 +00:00
oliverschmidt
ae2073cac9
Factored out setup directory search path for source files into Makefile.include.
...
- All compilers used support the -I option for setting an include search directory.
- The Contiki source tree follows the (common) approach of placing declarations (in headerf iles) in the same directory as definitions (in source files).
As a result it makes sense to use the -I compiler option for just the same set of directories used for the vpath gnumake directive.
Note: I checked several builds but nevertheless one or the other might need some additional adjustsments. Sorry for the inconvenience.
2007-05-19 07:54:53 +00:00
adamdunkels
4364a9929a
Removed WITH_UIP
2007-05-15 08:09:45 +00:00
oliverschmidt
237b1617b5
Factored out setup directory search path for source files into Makefile.include.
...
- Search target specific directories before CPU specific directories.
- Search CPU specific directories before generic directories.
Note: I checked several builds but nevertheless one or the other might need some additional adjustsments. Sorry for the inconvenience.
2007-05-13 08:41:11 +00:00
oliverschmidt
4fd1e3ece0
Added signed 32 bit data type.
2007-05-12 20:58:12 +00:00
oliverschmidt
8d3496194f
Added Multithreading support to the cc65 targets based on the Contiki 1.x C64 implementation with the following changes:
...
- Added support for the function parameter.
- Removed support for preemption because:
- No other current implementation does so.
- Preemption support would make the code at least target-dependent or it wouldn't work at all (as on plain Apple2 machines without timer interrupt).
2007-04-21 22:15:45 +00:00
oliverschmidt
ec2411d5ea
Structured the cc65 makefile like all the other makefiles in the Contiki 2.x build system.
2007-04-21 15:04:23 +00:00
oliverschmidt
5d62bbd039
Used SED to replace the assembler sources with the objects in the dependency file generated by the cc65 compiler. This allows to hide the assembler sources from GNU make which solves several issues. Now the cc65 toolchain behaves very similiar to gcc from the GNU make perspective.
2007-04-21 13:23:47 +00:00
oliverschmidt
48977bd89f
Replaced the PROJECT_OBJECTFILES hack with puting the Contiki library (containing contiki-main.o) and the cc65 libary into a cc65 "library group" which allows mutual crossreferences between the libraries in the group.
2007-04-18 22:52:22 +00:00
oliverschmidt
f3502e2ca4
Added NOP headers in order to allow build.
2007-04-18 21:38:55 +00:00
oliverschmidt
c7e8ac499e
Consistently use curly brackets for function calls (and add the same disclaimer as used in "my" other makefiles).
2007-04-14 15:55:50 +00:00
oliverschmidt
9cf544c45e
Added the same disclaimer as used in the header file.
2007-04-14 15:48:42 +00:00
oliverschmidt
274afdb55c
Made driver compilable with both Cygwin and VC++ (and usable for platform/win32 by using logging API).
2007-04-11 00:21:28 +00:00
oliverschmidt
9cc1871810
Fixed stupid bug. I have no idea how I didn't run into this one for months ! The development platforms have 400-600 bytes buffer size. So every incoming 1500 packet overwrote ~ 1000 bytes of uIP variables. And this happens very easily as every packet coming in for the Windows IP stack is seen by uIP as well (and discarded because of the wrong IP address).
2007-04-08 20:06:56 +00:00
adamdunkels
b2b750e83b
rtimer_arch_now() now returns the correct value
2007-04-07 05:45:08 +00:00
oliverschmidt
e37d79e4a3
Don't rely on gcc's auto-import feature.
2007-04-07 00:27:22 +00:00
oliverschmidt
e5d3453a79
Minor code formatting change.
2007-04-05 19:42:47 +00:00
oliverschmidt
be08e76366
Now that Contiki has a htonl() we need the same workaround here that we already have for htons().
2007-04-05 19:41:02 +00:00
bg-
8aa34f1ea4
* remove author.
2007-04-04 11:53:07 +00:00
adamdunkels
08d825c450
Added rtimer-arch.c
2007-04-03 19:05:13 +00:00
adamdunkels
b108ca702a
Fixed description
2007-04-03 19:04:27 +00:00
adamdunkels
00645113e5
MSP430 real-time rtimer support using timerb1
2007-04-03 19:03:09 +00:00
oliverschmidt
d41c0671d9
Ooops, that was one level of indirection to much.
2007-04-03 18:37:15 +00:00
oliverschmidt
aa4434ca55
CPU agnostic implementation of the platform specific part of the multi-threading library. Uses fibers on Windows and the ucontext functions on other platforms.
2007-04-03 00:40:51 +00:00
joxe
8add3d4660
corrected comments
2007-04-02 16:32:20 +00:00
oliverschmidt
5bceecfbb0
Added Cygwin networking support using WinPcap.
2007-04-01 21:05:17 +00:00
oliverschmidt
01b9b31952
Moved wpcap*.[ch] from platform/minimal-net/net to cpu/native/net.
2007-04-01 20:39:05 +00:00
adamdunkels
e6301c6221
Moved tapdev*.[ch] from platform/netsim/net and platform/minimal-net/net to cpu/native/net
2007-03-31 18:49:37 +00:00
adamdunkels
c4300e8e8d
Added #include that #defines NULL
2007-03-31 11:19:08 +00:00
adamdunkels
92e5e7a13c
Removed clock_delay()
2007-03-29 23:43:59 +00:00
adamdunkels
7db75a8aa6
x86 elfloader
2007-03-28 20:27:13 +00:00