nvt-se
|
c872a86653
|
undo accidental enabling of debug output.
|
2009-06-29 13:33:12 +00:00 |
|
nvt-se
|
1e0ca9ceac
|
Made the use of micro logs configurable to make file modifications
more efficient on storage types that support inline updates.
The sky platform uses logs, and the native platform uses no logs.
|
2009-06-29 13:30:16 +00:00 |
|
nvt-se
|
38fff1b527
|
mac_driver structure has been changed to include the init function.
|
2009-06-24 16:31:49 +00:00 |
|
joxe
|
a71664e8d1
|
quick fix for driver to work with 4MHz
|
2009-06-23 13:12:37 +00:00 |
|
adamdunkels
|
1c18bf4053
|
-> 2.3
|
2009-06-22 20:40:43 +00:00 |
|
nifi
|
912aba7280
|
added init function in MAC driver for easier configuration
|
2009-06-22 11:14:11 +00:00 |
|
nvt-se
|
53a8acc49a
|
cleared debug flag.
|
2009-06-10 15:13:37 +00:00 |
|
nvt-se
|
349e14abd4
|
fixed GC bug with big files and unwanted buffer overwrite bug.
|
2009-06-10 15:03:35 +00:00 |
|
nvt-se
|
33909cc2fd
|
made neighbor discovery method configurable. default is announcements.
|
2009-05-30 19:54:05 +00:00 |
|
nvt-se
|
83f2b9ae57
|
include ctimer.h, since ctimer's are used in the neighbor_discovery_conn struct.
|
2009-05-30 19:40:39 +00:00 |
|
nvt-se
|
d9b75b2fda
|
stop the watchdog while merging.
|
2009-05-26 14:27:06 +00:00 |
|
nvt-se
|
9277f922f1
|
fixed some documentation typos.
also uc -> unicast, stuc -> stunicast.
|
2009-05-26 13:58:53 +00:00 |
|
nifi
|
f39d2bd4c6
|
Fixed link panid for broadcasts to be standard compliant. Ignore packets addressed to other non-broadcast panids.
|
2009-05-26 12:08:29 +00:00 |
|
nvt-se
|
88766d8740
|
use unsigned for sector count type.
|
2009-05-25 22:10:04 +00:00 |
|
nvt-se
|
e2bbdbca9b
|
decrement TTL right after forwarding check.
|
2009-05-19 11:54:50 +00:00 |
|
nvt-se
|
b0a8154e96
|
make it possible to accumulate CRC values through crc16_data.
|
2009-05-14 12:05:04 +00:00 |
|
nvt-se
|
2978270e43
|
decreased the code size to less than 5000 bytes. (msp430 code)
improved clarity in read and write code.
added negative offset check in cfs_seek().
removed unnecessary multiplication.
|
2009-05-13 13:27:19 +00:00 |
|
nvt-se
|
995e788d73
|
Fixed append->modify->append bug.
Approximately doubled the speed of file reservations.
Reduced the compiled code size by about 100 bytes by removing redundant code.
|
2009-05-11 16:35:49 +00:00 |
|
nvt-se
|
74e9bc8789
|
Added flash reads and writes to energest.
|
2009-05-11 15:26:24 +00:00 |
|
adamdunkels
|
5308a09dd3
|
Added debug output
|
2009-05-10 21:10:23 +00:00 |
|
adamdunkels
|
02734c9806
|
Bugfix: must copy the sender and receiver addresses from the packetbuf buffer, otherwise an application program may overwrite them
|
2009-05-10 21:10:02 +00:00 |
|
adamdunkels
|
fe5a1f1068
|
Added an optimization option that avoids multiple simultaneous broadcasts from neighbors: when a broadcast is to be sent, a sender does not send until it knows that no other nodes are broadcasting.
|
2009-05-10 21:09:05 +00:00 |
|
adamdunkels
|
fe30886b37
|
Added functionality for decaying routes: when a packet is sent over a route, it is decayed. If the route is not refreshed within four packets (with the route_refresh() function, which is called when a new packet arrives), the route is dropped. A route can be decayed at most once per second
|
2009-05-10 21:08:01 +00:00 |
|
adamdunkels
|
6bf8e0b478
|
Bugfix by Takahide Matsutsuka: too few items in array, which caused problems with sdcc
|
2009-05-08 08:52:55 +00:00 |
|
zhitao
|
48d4800f08
|
removed reference to undefined function in mspgcc
|
2009-05-06 15:34:28 +00:00 |
|
adamdunkels
|
c330b23c57
|
Minor documentation addition
|
2009-05-06 15:07:35 +00:00 |
|
adamdunkels
|
1d921ddf42
|
Explicit typecast to avoid compiler problems
|
2009-05-06 15:07:09 +00:00 |
|
adamdunkels
|
0adceb63b4
|
Code cleanup; made encounter optimization explicit; added optimization for adaptive off-time, but it currently seems to work bad with broadcasts
|
2009-05-06 15:06:38 +00:00 |
|
adamdunkels
|
9fff85757d
|
Code cleanup; made strobe transmission time longer again (seems to work better in cooja?)
|
2009-05-06 15:05:28 +00:00 |
|
adamdunkels
|
a671ea1146
|
Documentation fix
|
2009-05-06 15:04:20 +00:00 |
|
zhitao
|
58940ecbf8
|
minor documentation fixes
|
2009-05-06 08:37:48 +00:00 |
|
nvt-se
|
55ec3093ec
|
removed complicated and mostly unused EOF hint code.
|
2009-05-04 22:30:32 +00:00 |
|
nvt-se
|
8e52b1bcfd
|
made the documentation more clear.
|
2009-05-04 22:29:48 +00:00 |
|
adamdunkels
|
1752b53f74
|
Refresh routes when a packet is received. Set a conservatively low route timeout (10 seconds).
|
2009-05-04 11:24:04 +00:00 |
|
adamdunkels
|
c83c5c4c55
|
Removed automatic refresh of routes from the route_lookup() function and moved it into an explicit route_refresh() function. The previous behaviour was dangerous, since it meant that even bad routes that someone was looking for were considered fresh. Now such routes time out if they are not explictily refreshed (e.g., on a packet reception)
|
2009-05-04 11:23:30 +00:00 |
|
adamdunkels
|
f5a57a4e54
|
Fixes by Ward Van Heddeghem (reapplied from versioin 1.24)
|
2009-04-30 20:21:06 +00:00 |
|
adamdunkels
|
e70cf0c7c6
|
Rewrite of the collect module. The new version uses a packet queue for outgoing and forwarded packets so that more than one packet can be forwarded at the same time. The new version uses the packetqueue module to maintain the packet queue.
|
2009-04-29 20:48:57 +00:00 |
|
adamdunkels
|
c489b1118d
|
New module: packetqueue. The packetqueue module maintains packet queues for other modules.
|
2009-04-29 20:47:30 +00:00 |
|
nvt-se
|
17fa2f1618
|
make sure that page isolation is called after erasing a sector in reluctant GC.
simplified the GC logic a bit.
|
2009-04-29 13:15:59 +00:00 |
|
adamdunkels
|
cc44e89415
|
Reduced default strobe time, which seems to work well. Avoid running the interrupt if the power-save feature is turned off (fixes problems with serial data reception on a gateway mote)
|
2009-04-29 11:42:13 +00:00 |
|
adamdunkels
|
c02a82ac41
|
Tag outgoing TCP packets with the ERELIABLE attribute so that an underlying power-saving MAC protocol can treat them differently, because it knows that an ACK might be arriving soon
|
2009-04-29 11:40:33 +00:00 |
|
adamdunkels
|
92862ad2a5
|
Increased the number of iterations for ugly-hack-loop that checks if a transmission has started, to accommodate a faster CPU speed on the MSP430
|
2009-04-29 11:38:50 +00:00 |
|
adamdunkels
|
c9df0ab123
|
Bugfix in debug message printout
|
2009-04-28 14:01:46 +00:00 |
|
adamdunkels
|
81ef83b856
|
Added option to wait randomly before sending a packet. A few code cleanups. Avoid switching radio off when sending a packet with end-to-end acks, because an ACK may arrive shortly after the transmission.
|
2009-04-28 14:00:53 +00:00 |
|
adamdunkels
|
fdd05f5c71
|
Bugfix: psock send should use PT_WAIT_UNTIL() not PT_YIELD_UNTIL(). This improves TCP throughput by 100x under minimal-net
|
2009-04-28 13:52:04 +00:00 |
|
fros4943
|
7810d362a6
|
minor bugfixes: a rucb sender could not immediately after start receiving a bulk transfer
|
2009-04-16 14:32:01 +00:00 |
|
nvt-se
|
3f205a1413
|
reluctant gc will now wait until the sector has no free pages
before erasing the sector.
|
2009-04-13 22:26:31 +00:00 |
|
nvt-se
|
c0fb680f12
|
simplified code by using udp_broadcast_new.
|
2009-04-13 19:55:15 +00:00 |
|
nvt-se
|
9765df97e5
|
support udp_broadcast_new also when using IPv6. Suggested by Wolf-Bastian Pttner.
|
2009-04-13 19:54:07 +00:00 |
|
adamdunkels
|
ef4f5cc0e5
|
Made TCP MSS configurable
|
2009-04-10 00:37:48 +00:00 |
|