]> oss.titaniummirror.com Git - tinyos-2.x.git/log
tinyos-2.x.git
16 years agoRecommended changes to TEP 1.
scipio [Tue, 29 May 2007 22:23:55 +0000 (22:23 +0000)]
Recommended changes to TEP 1.

16 years agoAdded getSerialPacket() and setSerialPacket() methods to the Message class so we...
rincon [Tue, 29 May 2007 16:44:50 +0000 (16:44 +0000)]
Added getSerialPacket() and setSerialPacket() methods to the Message class so we can access packet header information from the Message itself.

16 years agoFixed missing include.
janhauer [Tue, 29 May 2007 16:19:20 +0000 (16:19 +0000)]
Fixed missing include.

16 years agoRemove the TOSH_DATA_LENGTH=100.
razvanm [Fri, 25 May 2007 18:01:18 +0000 (18:01 +0000)]
Remove the TOSH_DATA_LENGTH=100.

16 years agoRemove the TOSH_DATA_LENGTH=100 limitation.
razvanm [Fri, 25 May 2007 17:38:08 +0000 (17:38 +0000)]
Remove the TOSH_DATA_LENGTH=100 limitation.

16 years agoSmall update to document the DELUGE_BASESTATION flag. The TOSH_DATA_LENGTH limitation...
razvanm [Fri, 25 May 2007 17:34:54 +0000 (17:34 +0000)]
Small update to document the DELUGE_BASESTATION flag. The TOSH_DATA_LENGTH limitation was also removed.

16 years agoSome cleanup.
razvanm [Fri, 25 May 2007 17:26:12 +0000 (17:26 +0000)]
Some cleanup.

16 years agoPrevious problem: The EventDispatcher is stuck on the function waitForEvent() while...
rincon [Thu, 24 May 2007 19:55:12 +0000 (19:55 +0000)]
Previous problem:  The EventDispatcher is stuck on the function waitForEvent() while we are attempting to close.  Closing NativeSerial while the driver is still in the function waitForEvent() will crash everything.  Calling cancelWait() in win32 does let waitForEvent() return until some event actually occurs, which is not the behavior I was expecting.  The serial driver itself could be fixed to let cancelWait() actually force waitForEvent() to return false, but I don't want to touch it.

Solution:  Force waitForEvent() to generate an event by adding a notification for OUTPUT_EMPTY.  When we want to close the serial source, send a 0x7E byte to the serial port and wait for that OUTPUT_EMPTY event to get signaled.  At that point, the EventDispatcher thread can continue execution and will cancelWait() properly.  We aren't stuck in waitForEvent(), and only then can we shut down NativeSerial with confidence.

One other issue remaining is the fact that sometimes you can't reconnect to the source very quickly after a disconnect.  Adding in a hacky wait(500) fixes the problem on disconnect, but I haven't included that anywhere because I haven't figured out exactly what is causing us to need to wait for a short period of time after a disconnect before reconnecting again.

16 years agotest code for simultaneous photo and temp sensing
idgay [Wed, 23 May 2007 23:01:38 +0000 (23:01 +0000)]
test code for simultaneous photo and temp sensing

16 years agoensure visibility of atomic statement effects
idgay [Wed, 23 May 2007 22:49:31 +0000 (22:49 +0000)]
ensure visibility of atomic statement effects

16 years agocomment missing
idgay [Wed, 23 May 2007 22:49:08 +0000 (22:49 +0000)]
comment missing

16 years agobit rot fixes
idgay [Wed, 23 May 2007 22:17:49 +0000 (22:17 +0000)]
bit rot fixes

16 years agotrivial test app for LocalTimeMilliC
idgay [Wed, 23 May 2007 22:00:55 +0000 (22:00 +0000)]
trivial test app for LocalTimeMilliC

16 years agoLocalTimeMilliC + msp430 support therefore
idgay [Wed, 23 May 2007 21:58:08 +0000 (21:58 +0000)]
LocalTimeMilliC + msp430 support therefore

16 years agoupdate
idgay [Wed, 23 May 2007 21:41:57 +0000 (21:41 +0000)]
update

16 years agoupdates for clarification and LocalTime
idgay [Wed, 23 May 2007 21:33:47 +0000 (21:33 +0000)]
updates for clarification and LocalTime

16 years agocopyright notices
idgay [Tue, 22 May 2007 21:34:49 +0000 (21:34 +0000)]
copyright notices

16 years agovoltage sensors for mica family - all based on internal ADC for
idgay [Tue, 22 May 2007 21:02:12 +0000 (21:02 +0000)]
voltage sensors for mica family - all based on internal ADC for
consistency and simplicity (external sensor on mica2, mica2dot no
longer used)

16 years agoConsistent voltage stuff for mica family based on code from
idgay [Tue, 22 May 2007 20:59:01 +0000 (20:59 +0000)]
Consistent voltage stuff for mica family based on code from
Razvan Musaloiu-E.

16 years agoInitial commit of the Deluge T2. Some notes:
razvanm [Tue, 22 May 2007 20:34:19 +0000 (20:34 +0000)]
Initial commit of the Deluge T2. Some notes:
- TOSBoot includes some code to allow the MicaZ version to compile but it's not support for it it's not done yet.
- tools/tinyos/misc/Makefile.am is not updated yet so the new tools will not be installed by default.

16 years agofix resource sharing - use isOwner
idgay [Tue, 22 May 2007 18:49:53 +0000 (18:49 +0000)]
fix resource sharing - use isOwner

16 years agoInclude false positive acknowledgements. Adjusted default constants to
scipio [Mon, 21 May 2007 22:08:29 +0000 (22:08 +0000)]
Include false positive acknowledgements. Adjusted default constants to
reduce RAM footprint of noise model.

16 years agoImproved accuracy of acknowledgement delivery by considering SNR
scipio [Mon, 21 May 2007 21:35:54 +0000 (21:35 +0000)]
Improved accuracy of acknowledgement delivery by considering SNR
curves. Currently, ack reception is based on the same SNR/PRR curve
as packet delivery. This is pessimistic, due to the fact that acks
are shorter than packets. I need to measure the ARR/SNR curve to
put it something more accurate. Also, currently TOSSIM does not model
false positives, something I will be adding shortly.

17 years agoAutomatic retries if the mote doesn't send back a proper ack. This helps work around...
rincon [Fri, 18 May 2007 18:53:24 +0000 (18:53 +0000)]
Automatic retries if the mote doesn't send back a proper ack.  This helps work around the tmote dropped packet issue.

17 years agoPreviously, the serial forwarder would only release the COM port on exit. Now it...
rincon [Fri, 18 May 2007 18:27:03 +0000 (18:27 +0000)]
Previously, the serial forwarder would only release the COM port on exit.  Now it provides the ability to temporarily release or reconnect to the COM port when you close/open your source.  The SF GUI demonstrates this ability when you connect to your mote, stop the server and verify you can reprogram your mote at that time, restart the sf server and verify you can continue communicating with that mote... all without closing down your serial forwarder.

17 years agoDon't forget the README!
scipio [Thu, 17 May 2007 22:06:35 +0000 (22:06 +0000)]
Don't forget the README!

17 years agoAdd test for capture effect.
scipio [Thu, 17 May 2007 22:06:10 +0000 (22:06 +0000)]
Add test for capture effect.

17 years agoFixed CpmModelP to correctly lose packets caused by subsequent transmissions.
scipio [Thu, 17 May 2007 22:03:59 +0000 (22:03 +0000)]
Fixed CpmModelP to correctly lose packets caused by subsequent transmissions.

Adjust constants in CSMA to reflect the current CC2420 stack.

17 years agoAdd defaults for CollectionDebug interface.
razvanm [Wed, 16 May 2007 19:07:19 +0000 (19:07 +0000)]
Add defaults for CollectionDebug interface.

17 years agoIncorporate Jack's comments.
scipio [Tue, 15 May 2007 23:31:21 +0000 (23:31 +0000)]
Incorporate Jack's comments.

17 years agoTEP 120.
scipio [Tue, 15 May 2007 23:29:48 +0000 (23:29 +0000)]
TEP 120.

17 years agoAdd lib/power
scipio [Mon, 14 May 2007 15:37:57 +0000 (15:37 +0000)]
Add lib/power

17 years agoAdd comment about --ignoreos in upgrade instructions
scipio [Wed, 9 May 2007 20:22:54 +0000 (20:22 +0000)]
Add comment about --ignoreos in upgrade instructions

17 years agofaster crc implementation
andreaskoepke [Mon, 7 May 2007 15:43:59 +0000 (15:43 +0000)]
faster crc implementation

17 years agoTest the ability to duty cycle the radio on and off while the SPI bus starts and...
rincon [Fri, 4 May 2007 18:35:32 +0000 (18:35 +0000)]
Test the ability to duty cycle the radio on and off while the SPI bus starts and stops gracefully.

17 years agoInstallation.
scipio [Wed, 2 May 2007 03:51:18 +0000 (03:51 +0000)]
Installation.

17 years agoUpdated instructions.
scipio [Wed, 2 May 2007 03:12:46 +0000 (03:12 +0000)]
Updated instructions.

17 years agoInclude plug for Xubuntos. Add TOSSIM note.
scipio [Tue, 1 May 2007 23:39:19 +0000 (23:39 +0000)]
Include plug for Xubuntos. Add TOSSIM note.

17 years agoRemove the looping timer, using a looping task instead
rincon [Mon, 30 Apr 2007 17:31:08 +0000 (17:31 +0000)]
Remove the looping timer, using a looping task instead

17 years agoFixed SPI bus crashing issue by adding in a SplitControl interface to shut it down...
rincon [Mon, 30 Apr 2007 17:24:26 +0000 (17:24 +0000)]
Fixed SPI bus crashing issue by adding in a SplitControl interface to shut it down before turning off the radio.  The majority of this work and debugging was spawned by Roman Lim.

17 years ago- instrumented for performance evaluation
andreaskoepke [Mon, 30 Apr 2007 11:03:25 +0000 (11:03 +0000)]
- instrumented for performance evaluation
- changed SleepTime interface to allow a local sleep time that is smaller
  or equal to the largest sleep time in the network, ideally there will be
  a time when Sleeptime can be replaced with LowPowerListening, but currently
  the semantic of LPL does not fit
- changed initialization of variables

17 years ago*** empty log message ***
scipio [Fri, 27 Apr 2007 17:32:20 +0000 (17:32 +0000)]
*** empty log message ***

17 years agoAllows proper generation of tos_image.xml.
prabal [Fri, 27 Apr 2007 05:01:25 +0000 (05:01 +0000)]
Allows proper generation of tos_image.xml.
- fixes a small mistake in support/make/Makedefaults that
  prevents the generation on ident information
- updates support/make/tos_image.extra and tools/tinyos/misc/tos-write-image.in
  to allow generation of the platform information in the tos_image.xml.

17 years agoLink to lesson 11 for 2.0.0.
scipio [Tue, 24 Apr 2007 19:58:15 +0000 (19:58 +0000)]
Link to lesson 11 for 2.0.0.

17 years agoTinyOS 2.0.1-4. tinyos/2.0.1
scipio [Sat, 21 Apr 2007 14:23:07 +0000 (14:23 +0000)]
TinyOS 2.0.1-4.

17 years agoRegenerate for 2.0.1.
scipio [Sat, 21 Apr 2007 07:04:39 +0000 (07:04 +0000)]
Regenerate for 2.0.1.

17 years agoFix compilation warnings.
scipio [Sat, 21 Apr 2007 07:02:37 +0000 (07:02 +0000)]
Fix compilation warnings.

17 years agoBetter support for windows compilation.
scipio [Sat, 21 Apr 2007 07:00:30 +0000 (07:00 +0000)]
Better support for windows compilation.

17 years agoSpec for 2.0.1
scipio [Sat, 21 Apr 2007 06:43:40 +0000 (06:43 +0000)]
Spec for 2.0.1

17 years agoInclude java classes.
scipio [Sat, 21 Apr 2007 05:22:16 +0000 (05:22 +0000)]
Include java classes.

17 years agoIncorporate probing in sim-fast.
scipio [Sat, 21 Apr 2007 04:53:11 +0000 (04:53 +0000)]
Incorporate probing in sim-fast.

17 years agoChanged to reflect standard TinyOS coding style
prabal [Sat, 21 Apr 2007 03:37:33 +0000 (03:37 +0000)]
Changed to reflect standard TinyOS coding style

17 years agoAdded better OS probing. Need to test on cygwin.
scipio [Sat, 21 Apr 2007 03:28:17 +0000 (03:28 +0000)]
Added better OS probing. Need to test on cygwin.

17 years agoLesson 11.
scipio [Fri, 20 Apr 2007 21:41:34 +0000 (21:41 +0000)]
Lesson 11.

17 years agoFix script to new radio model, removed printf from sim_noise.
scipio [Fri, 20 Apr 2007 21:39:36 +0000 (21:39 +0000)]
Fix script to new radio model, removed printf from sim_noise.

17 years agoFixed TOSSIM bug where you have to reference this Atm128Timer.h in
scipio [Fri, 20 Apr 2007 19:03:53 +0000 (19:03 +0000)]
Fixed TOSSIM bug where you have to reference this Atm128Timer.h in
funny places due to component structure differences. JUst include it
where you should, that is, where it's used.

17 years agoMOre TOSIM
scipio [Fri, 20 Apr 2007 18:58:29 +0000 (18:58 +0000)]
MOre TOSIM

17 years agofix end of log volume handling
idgay [Fri, 20 Apr 2007 17:47:30 +0000 (17:47 +0000)]
fix end of log volume handling

17 years agohandle full log
idgay [Fri, 20 Apr 2007 17:39:37 +0000 (17:39 +0000)]
handle full log

17 years agoCreation. First drafts of Storage Working Group TEP's.
rincon [Fri, 20 Apr 2007 17:14:35 +0000 (17:14 +0000)]
Creation.  First drafts of Storage Working Group TEP's.

17 years agoNot done making updates to this TEP yet. Added in some ascii art, fixed some things...
rincon [Fri, 20 Apr 2007 17:14:04 +0000 (17:14 +0000)]
Not done making updates to this TEP yet.  Added in some ascii art, fixed some things mentioned by Jonathan, etc.

17 years agoFixed typos, facilitated explanations, made some adaptations (SineSensorC is now...
janhauer [Fri, 20 Apr 2007 12:23:35 +0000 (12:23 +0000)]
Fixed typos, facilitated explanations, made some adaptations (SineSensorC is now mentioned).

17 years agoUpdate to meet tep 3 standards for naming messages
klueska [Fri, 20 Apr 2007 01:13:44 +0000 (01:13 +0000)]
Update to meet tep 3 standards for naming messages

17 years agoUpdate to comply with tep 3 standards as well as better documantation
klueska [Fri, 20 Apr 2007 00:55:32 +0000 (00:55 +0000)]
Update to comply with tep 3 standards as well as better documantation

17 years agoUpdate to README / documentation of applications for the release
klueska [Fri, 20 Apr 2007 00:41:40 +0000 (00:41 +0000)]
Update to README / documentation of applications for the release

17 years agoUpdate stuff.
scipio [Fri, 20 Apr 2007 00:26:26 +0000 (00:26 +0000)]
Update stuff.

17 years agoAdd statement about expected output.
scipio [Thu, 19 Apr 2007 23:49:49 +0000 (23:49 +0000)]
Add statement about expected output.

17 years agoDistinguish flicker and toggle.
scipio [Thu, 19 Apr 2007 23:43:40 +0000 (23:43 +0000)]
Distinguish flicker and toggle.

17 years agoRelease notes.
scipio [Thu, 19 Apr 2007 23:08:12 +0000 (23:08 +0000)]
Release notes.

17 years agoBug fix from John Regehr.
scipio [Thu, 19 Apr 2007 22:45:47 +0000 (22:45 +0000)]
Bug fix from John Regehr.

17 years agoupdate based on Prabal's feedback
idgay [Thu, 19 Apr 2007 20:50:47 +0000 (20:50 +0000)]
update based on Prabal's feedback

17 years agoBugfix. Now works with MicaZ nodes as the PacketParrot
prabal [Thu, 19 Apr 2007 07:39:18 +0000 (07:39 +0000)]
Bugfix. Now works with MicaZ nodes as the PacketParrot

17 years agoIncorporate David Gay's feedback on the tutorial
prabal [Thu, 19 Apr 2007 07:25:37 +0000 (07:25 +0000)]
Incorporate David Gay's feedback on the tutorial

17 years agoUpdate build scripts.
scipio [Thu, 19 Apr 2007 06:26:13 +0000 (06:26 +0000)]
Update build scripts.

17 years agoUpdate for 2.0.1.
scipio [Thu, 19 Apr 2007 06:25:21 +0000 (06:25 +0000)]
Update for 2.0.1.

17 years agoOption to enable hardware acknowledgements based on CC2420_HW_ACKNOWLEDGEMENTS prepro...
rincon [Wed, 18 Apr 2007 23:12:36 +0000 (23:12 +0000)]
Option to enable hardware acknowledgements based on CC2420_HW_ACKNOWLEDGEMENTS preprocessor flag.  Updated comments in README.

17 years agoRemoval - this stack has become the default.
rincon [Wed, 18 Apr 2007 22:19:33 +0000 (22:19 +0000)]
Removal - this stack has become the default.

17 years agodefault freq should be same as old stack
idgay [Wed, 18 Apr 2007 21:49:06 +0000 (21:49 +0000)]
default freq should be same as old stack

17 years agoreadd demo sensor
idgay [Wed, 18 Apr 2007 20:56:53 +0000 (20:56 +0000)]
readd demo sensor

17 years agoduplicate file
idgay [Wed, 18 Apr 2007 20:12:58 +0000 (20:12 +0000)]
duplicate file

17 years agoCall is needed.
scipio [Wed, 18 Apr 2007 17:11:29 +0000 (17:11 +0000)]
Call is needed.

17 years ago- Fix bug found by Guillermo De Cesco. The buffer pointer was not
jwhui [Wed, 18 Apr 2007 15:12:45 +0000 (15:12 +0000)]
- Fix bug found by Guillermo De Cesco. The buffer pointer was not
being updated properly when reading across multiple records.

17 years agoTook out accidental inclusion of UserButton interfaces.
gtolle [Wed, 18 Apr 2007 04:02:06 +0000 (04:02 +0000)]
Took out accidental inclusion of UserButton interfaces.

17 years agoformat changes, more readable signal for txSFD/rxSFD
andreaskoepke [Tue, 17 Apr 2007 12:57:59 +0000 (12:57 +0000)]
format changes, more readable signal for txSFD/rxSFD

17 years agomeasured time correction wiht osci
andreaskoepke [Tue, 17 Apr 2007 12:56:40 +0000 (12:56 +0000)]
measured time correction wiht osci

17 years agoFix forwarding bug -- don't forward broadcasts.
scipio [Tue, 17 Apr 2007 11:43:37 +0000 (11:43 +0000)]
Fix forwarding bug -- don't forward broadcasts.

17 years agoUpdate of Std/Split Control interface definitions to be in line with TEP115. Also...
klueska [Sun, 15 Apr 2007 21:11:38 +0000 (21:11 +0000)]
Update of Std/Split Control interface definitions to be in line with TEP115.  Also added the EALREADY type to TinyError.h so that providers of the SplitControl interface can return this value

17 years agoUpdate of documentation
klueska [Sun, 15 Apr 2007 20:39:48 +0000 (20:39 +0000)]
Update of documentation

17 years agoUpdate of documentation on ArbiterP
klueska [Sun, 15 Apr 2007 20:33:34 +0000 (20:33 +0000)]
Update of documentation on ArbiterP

17 years agoUpdate of documentation on ArbiterP
klueska [Sun, 15 Apr 2007 20:28:25 +0000 (20:28 +0000)]
Update of documentation on ArbiterP

17 years agoUpdate to give warning about calling release before granted event comes back. If...
klueska [Sun, 15 Apr 2007 20:05:03 +0000 (20:05 +0000)]
Update to give warning about calling release before granted event comes back.  If done, there is a potential race condition.

17 years agoUpdate tutorials to bring into sync with code
prabal [Sat, 14 Apr 2007 07:16:23 +0000 (07:16 +0000)]
Update tutorials to bring into sync with code

17 years agoCopyrights and fixes
scipio [Sat, 14 Apr 2007 00:40:57 +0000 (00:40 +0000)]
Copyrights and fixes

17 years agoUpdated AntiTheft app to manually start dissemination. Not tested, but should compile.
gtolle [Sat, 14 Apr 2007 00:35:07 +0000 (00:35 +0000)]
Updated AntiTheft app to manually start dissemination. Not tested, but should compile.

17 years agoUpdated TestDissemination and TestNetwork to start the dissemination service manually...
gtolle [Sat, 14 Apr 2007 00:34:20 +0000 (00:34 +0000)]
Updated TestDissemination and TestNetwork to start the dissemination service manually. I've tried TestDissemination, but haven't tried TestNetwork. Let me know if you experience any problems.

17 years agoAdded a test for the telosb user button code.
gtolle [Sat, 14 Apr 2007 00:33:03 +0000 (00:33 +0000)]
Added a test for the telosb user button code.

17 years agoAdded a StdControl interface, and a top-level DisseminationC component. Added a set...
gtolle [Sat, 14 Apr 2007 00:31:29 +0000 (00:31 +0000)]
Added a StdControl interface, and a top-level DisseminationC component. Added a set() command to the DisseminationValue interface that changes the locally stored value w/o disseminating it.

17 years agoAdded code to support user button on telosb.
gtolle [Sat, 14 Apr 2007 00:29:37 +0000 (00:29 +0000)]
Added code to support user button on telosb.

17 years agoAdded DeviceMetadata interface to telosb sensors.
gtolle [Fri, 13 Apr 2007 21:46:18 +0000 (21:46 +0000)]
Added DeviceMetadata interface to telosb sensors.

17 years agoChange logging slightly.
scipio [Fri, 13 Apr 2007 21:45:25 +0000 (21:45 +0000)]
Change logging slightly.