Enrico Joerns
649a447c9a
[cooja] plugins/analyzers: Replace StringBuffer with lightweight StringBuilder
...
StringBuffer is a thread-safe version of StringBuilder that introduces
unnecessary overhead.
Additional replaced concatenations with .append()
2014-07-11 02:41:44 +02:00
Enrico Joerns
e16a5d65df
[cooja] plugins/analyzers: Added @Override annotations
2014-07-11 02:14:46 +02:00
Enrico Joerns
3e9a780721
[cooja] plugins/analyzers: Indention and whitespace cleanups
2014-07-11 02:07:21 +02:00
Enrico Joerns
d4f7cf6a83
[cooja] plugins/sinks/TrafficVisualizerSkin: Synchronized to avoid ConcurrentModificationExcpetions
2014-07-11 01:03:35 +02:00
Enrico Joerns
cd9164d5e2
[cooja] skins/TrafficVisualizerSkin: Use alpha value to fade out arrow color an potentially allow to configure colors
2014-07-11 00:57:35 +02:00
Enrico Joerns
449046669f
[cooja] skins/TrafficVisualizerSkin: Age handling moved to RadioConnectionArrow class which also got some lines of function documentation
2014-07-11 00:57:35 +02:00
Enrico Joerns
7c80213c3a
[cooja] skins/TrafficVisualizerSkin: Reduce array copy and iteration overhead
2014-07-11 00:57:35 +02:00
Enrico Joerns
468d533c41
[cooja] skins/TrafficVisualizerSkin: Removed unnecessary 'historyCopy'
2014-07-11 00:57:35 +02:00
Enrico Joerns
ea80fd9257
[cooja] skins/TrafficVisualizerSkin: Use LinkedList instead of ArrayList to increase add and remove performance
2014-07-11 00:57:34 +02:00
Enrico Joerns
c92f83c048
[cooja] skins/TrafficVisualizerSkin: Indicate sent but unreceived messages by a red double circle around mote
2014-07-11 00:57:34 +02:00
Enrico Joerns
0e78bc67f9
[cooja] skins/TrafficVisualizerSkin: Added @Override annotations and added some final modifiers
2014-07-11 00:57:34 +02:00
Enrico Joerns
d8cf0d1349
[cooja] plugins/Visualizer: Deselect motes when removing
...
This also fixes visualization issues such as
remaining transmission range underlays for removed motes
2014-07-11 00:41:53 +02:00
Enrico Joerns
8b1bf449ee
[cooja] plugins/Visualizer: Key control: Allow to abort actions with ESCAPE key and delete motes using DELETE key
2014-07-11 00:41:53 +02:00
Enrico Joerns
73fbb69e39
[cooja] plugins/Visualizer: Partly implement behavior of beginMoveRequest to fit new mote movement handling
2014-07-11 00:41:53 +02:00
Enrico Joerns
39f7ca586f
[cooja] plugins/Visualizer: Mouse release always terminates previous action
...
and reses actions state and cursor appearance
Also renamed UNKNOWN state to NONE as it is a more adequate name for the new behavior
2014-07-11 00:41:53 +02:00
Enrico Joerns
2465a361e3
[cooja] plugins/Visualizer: Group mote placement modifications together (move, delete)
2014-07-11 00:41:53 +02:00
Enrico Joerns
99e74e8348
[cooja] plugins/Visualizer: Implemented multi-mode behavior of delete mote menu for move, too
...
Note that this does not yet implement the correct behavior of beginMoveReques()
2014-07-11 00:41:52 +02:00
Enrico Joerns
3ada5671ef
[cooja] plugins/Visualizer: Fixed node selection in Delete menu handling
...
Previously if multiple motes were selected
and the context menu of a non-selected mote
was used to delete, not the clicked mote
but the other selected ones were removed.
This behavior is fixed so that if another
mote is clicked only this is deleted.
2014-07-11 00:41:52 +02:00
Enrico Joerns
6594684342
[cooja] plugins/Visualizer: Enable multi-mote deletion in mote menu
2014-07-11 00:41:52 +02:00
Enrico Joerns
963d2686f3
[cooja] plugins/Visualizer: Fix: Always highlight selected motes.
...
Motes were highlighted only by the UDGMVisualizerSkin before.
Now highlighting moved from individual VisualizerSkin to Visualizer.
A selected mote is highlighted with a blue circle
and a semi-transparent gray overlay.
2014-07-11 00:41:52 +02:00
Enrico Joerns
1654152193
[core] timer: Added note that timer_reset must not be executed before timer expired
...
Should save some users debugging time while adding no computation overhead
that would be needed for range checks
2014-07-10 11:33:00 +02:00
Enrico Joerns
351e4e9fba
[avr] added missing mcu parameter to ASFLAGS in order to enable assembler compilation
2014-07-10 11:31:41 +02:00
Enrico Joerns
80dc21d5d5
[cooja] plugins/analyzers: Added PacketAnalyzer for 6lowpan fragmentation header
2014-07-10 09:19:32 +02:00
Mariano Alvira
01bd045570
Merge pull request #737 from jimparis/slip-buffer-overflow-fixes
...
Increase fixed filename sizes in SLIP tunnels
2014-07-08 09:16:50 -04:00
Mariano Alvira
4051cd38a0
Merge pull request #748 from jimparis/travis-cleanup
...
Travis cleanup
2014-07-08 09:15:34 -04:00
Jim Paris
21b78de088
Increase fixed filename sizes in SLIP tunnels
...
Long serial port names like
/dev/serial/by-id/usb-FTDI_FT230X_Basic_UART_DN0038W8-if00-port0
cause crashes. This is the simplest fix to avoid the problem.
2014-07-08 01:48:28 -04:00
Jim Paris
b5f37e856c
Rename travis "arm" BUILD_ARCH to "arm-apcs".
...
These platforms are built with an old ARM compiler that supports the
deprecated APCS standard.
2014-07-08 01:48:28 -04:00
Jim Paris
6d7464a422
Add retries to commands that download from external servers.
...
This helps reduce the chance of a build failure due to transient
download error. This also switches to consistent use of wget
throughout, which reports download errors more cleanly in the travis
build logs.
2014-07-08 01:48:28 -04:00
Jim Paris
4242182588
Clean up script commands in .travis.yml.
...
Besides general whitespace and quoting cleanup, commands that test
variables were changed from:
[ $B = a ] && command || true
to
if [ $B = a ] ; then command ; fi
This form correctly returns the exit code of "command".
2014-07-05 23:44:46 -04:00
Nicolas Tsiftes
784b20c04d
Merge pull request #739 from alignan/merge_z1sp_with_z1
...
Merges Z1SP into Z1 platform
2014-07-04 22:03:27 +02:00
Oliver Schmidt
80edbe14a9
Merge pull request #747 from oliverschmidt/master
...
Only wait for a keypress if the user is told to press a key.
2014-07-04 20:00:40 +02:00
Oliver Schmidt
9ee1bae150
Only wait for a keypress if the user is told to press a key.
2014-07-04 19:33:35 +02:00
Antonio Lignan
5467674fcc
Merges Z1SP into Z1 platform
2014-07-04 10:41:05 +02:00
Rémy Léone
cfc775d121
Adding a CONTRIBUTING file to use github feature
...
https://github.com/blog/1184-contributing-guidelines
2014-07-04 09:29:12 +02:00
Pablo Corbalán
a490986401
Add PLATFORM_HAS_RADIO in Sky Platform
...
In order to use the er-server-example Radio resource it is required that the platform defines that it has a radio. This line might be required in other platforms.
2014-07-03 14:59:13 +01:00
Nicolas Tsiftes
ccc75404f4
Merge pull request #711 from gebart/upstream-fix-implicit-definitions
...
uip.h missing #include <string.h>
2014-07-02 16:36:03 +02:00
Atis Elsts
705587cdb7
Fix time accounting on msp430 Series 1 and Series 2 MCU based platforms.
...
The problem with the current version of the code was that the condition at the end of the do...while loop at Timer A1 interrupt:
while((TACCR1 - TAR) > INTERVAL);
evaluates to false whenever TACCR1 == TAR.
Not incrementing TACCR1 in this case leads to Timer A1 interrupt not being called for 2 seconds, until TAR counter reaches TACCR1 again after an overflow.
The patch avoids this problem by changing the condition of the loop, and using CLOCK_LT macro to compare between time values.
The patch also attempts to fix another problem: a read of TAR register while it is being updated may return a lower value than the actual contents. To avoid that, the "read twice and compare results" idiom should be used. As the TAR register is updated by the actual hardware, it is of no importance whether it is read with interrupts disabled or enabled; the problem can occur in both contexts.
2014-07-02 11:07:02 +02:00
Rémy Léone
f111058472
Removing trailing whitespaces
2014-06-30 20:01:05 +02:00
Mariano Alvira
ed87b928c5
Merge pull request #734 from hexluthor/rl78-linkaddr
...
rl78: Change RIMEADDR_CONF_SIZE to LINKADDR_CONF_SIZE
2014-06-29 08:01:02 -04:00
Ian Martin
6ae6c4768e
rl78: Change RIMEADDR_CONF_SIZE to LINKADDR_CONF_SIZE because the rimeaddr module has been renamed to linkaddr.
2014-06-28 22:07:57 -04:00
Nicolas Tsiftes
782de873e4
Merge pull request #650 from cetic/pr-rpl-hbh-fixes
...
Fix for RPL Hop-by-Hop options
2014-06-27 14:43:00 +02:00
Laurent Deru
02972e6514
Improve RPL hop-by-hop option detection
2014-06-27 09:45:57 +02:00
Laurent Deru
d45782fbcd
Insert properly Hop-by-Hop option at first hop
2014-06-27 09:45:51 +02:00
Laurent Deru
2dfe2c377f
Setting uip_ext_len again breaks hop-by-hop option
2014-06-27 09:43:53 +02:00
Laurent Deru
b6742e5eb5
Sender rank in Hop-by-Hop option has inverted bytes
2014-06-27 09:43:53 +02:00
Camilo Rodegheri
a50e933f4b
Update README.md
...
Adding new command for ftdi_sio which applies to Kernel>3.12 used by Ubuntu 14.04 LTS
2014-06-21 15:04:48 -03:00
Nicolas Tsiftes
43731dbb68
Merge pull request #637 from alignan/z1-add-flags-20bit-support
...
Added flags to enable 20-bit support from msp430-gcc 4.7.x
2014-06-19 09:56:52 +02:00
Adam Dunkels
ad4c1b9218
Merge pull request #729 from g-oikonomou/fix-nd6-sdcc
...
Fix SDCC Compile Error
2014-06-18 08:14:48 +02:00
George Oikonomou
32a7572f25
Fix SDCC Compile Error
2014-06-17 22:20:49 +01:00
Antonio Lignan
3d64b80e40
Added flags to enable 20-bit support from msp430-gcc 4.7.x
2014-06-17 12:55:08 +02:00