Benoît Thébaudeau
3cd7b7efd1
zoul: remote: Add support for FAT
...
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:45 +01:00
Benoît Thébaudeau
12ea1bd492
zoul: remote: Factor out duplicate RTC init
...
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:44 +01:00
Benoît Thébaudeau
2866ae0555
Add support for the FAT file system
...
The FatFs generic FAT file system module is used.
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:44 +01:00
Benoît Thébaudeau
062a8535ec
zoul: remote: Add support for SD/MMC
...
This change adds SD/MMC support at block level, by porting the SD/MMC
driver.
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:43 +01:00
Benoît Thébaudeau
8b57670121
cc2538: spi: Add support for dynamic clock frequency
...
This changes makes it possible to change the SPI clock frequency at
runtime.
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:43 +01:00
Benoît Thébaudeau
c76b8235f4
cc2538: spi: Add support for dynamic instances
...
Previously, only constants could be used to pass SPI instances to the
SPI driver. This change makes it possible to use SPI instances from
variables.
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:43 +01:00
Benoît Thébaudeau
0e5b18635b
cc2538: gpio: Add macro to get pin direction
...
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:42 +01:00
Benoît Thébaudeau
faf22609f4
disk: Add SD/MMC driver
...
Only SPI is supported.
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:50:42 +01:00
Benoît Thébaudeau
92ecbf7064
Add disk API
...
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
2016-11-27 22:15:34 +01:00
Andreas Urke
835a6aa6e6
Move RF_CHANNEL such that it is applied for prop mode as well
2016-11-27 16:13:58 +01:00
Simon Duquennoy
728e417e04
Merge pull request #1502 from yatch/pr-radiologger
...
Fix timestamps of packets recorded in pcap files
2016-11-27 11:58:03 +01:00
Yasuyuki Tanaka
a4adc257e8
Add RTIMERTICKS_TO_US_64() macro (platform/cooja)
2016-11-26 11:47:59 +01:00
Yasuyuki Tanaka
106731cec1
TSCH: update README.md
...
- add cooja / Cooja mote as supported platform
- correct Rx mode requirements
2016-11-26 11:47:59 +01:00
Yasuyuki Tanaka
87337e12fc
Revert coordinator selection based on node-id for Cooja mote
...
(example/ipv6/rpl-tsch/node.c)
2016-11-26 11:47:59 +01:00
Antonio Lignan
58243bc14a
Merge pull request #1827 from alignan/pull/rf-channel
...
Harmonize RF_CHANNEL definition
2016-11-25 21:11:20 +01:00
George Oikonomou
610eefc2ff
Merge pull request #1741 from simonduq/pr/tsch-adaptive-control-traffic
...
TSCH adaptive control traffic
2016-11-25 15:53:32 +00:00
Simon Duquennoy
3e00adacc0
RPL non-storing: more conservative DTSN update, as per RFC 6550, section 9.6.
2016-11-25 16:30:08 +01:00
Nicolas Tsiftes
edf3a27920
Merge pull request #1879 from pernin/master
...
Change on DIO trickle timer condition for DIO sending
2016-11-25 16:15:08 +01:00
Nicolas Tsiftes
a69d78ac73
Merge pull request #1948 from zhitaoh/zoul-example-readme
...
correct shell arguments
2016-11-25 16:13:02 +01:00
Nicolas Tsiftes
5281908018
Always enable the I/O semantics function in Coffee.
2016-11-25 16:02:44 +01:00
Zhitao He
7ba88a6800
correct shell arguments
2016-11-25 14:59:30 +01:00
Antonio Lignan
fc582606f2
Harmonize RF_CHANNEL definition
2016-11-25 10:37:14 +01:00
Benoît Thébaudeau
52a8dcc65b
Merge pull request #1816 from bthebaudeau/cm-cc2538-mt
...
Cortex-M and CC2538 multi-threading
2016-11-24 23:28:05 +01:00
Benoît Thébaudeau
9c47f874c4
CC2538: Enable Cortex-M mtarch implementation
...
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
3f676a5a16
ARM: Add common Cortex-M mtarch implementation
...
This includes support for preemption ready to be integrated into
exception handlers.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
81805129f8
mt: Fix preemption
...
Preemption was supposed to be supported, but it had no means of safely
updating the state of a thread, so mt_exec() could fail to resume a
preempted thread.
mt_exec() is allowed to be called only from the main Contiki thread, so
the mt threads passed to it may be only ready or exited, not running.
Consequently, there is no need for a distinction between the ready and
running states, so merge them as a started state, which avoids having to
update the state of a thread upon preemption.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
927e9b8150
mt: Fix missing call to mtarch_pstop()
...
If mt_yield() needs it, then mt_exit() too. A thread could indeed be
preempted while calling mt_exit().
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
82afa72c13
mt: Remove unused code
...
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
ab1491be69
CC2538: Use CMSIS-CORE
...
Switch to CMSIS-CORE and remove the duplicate code.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
9195b49c18
ARM: CMSIS-CORE: Introduce NVIC_IsIRQEnabled()
...
This function returns the enable state of an interrupt.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
d3158897c2
ARM: CMSIS-CORE: Fix doxygen warnings
...
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
280dc091d2
ARM: CMSIS-CORE: Bump version to 4.30
...
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Benoît Thébaudeau
ca86d5febf
ARM: Fix doxygen style
...
The rule in Contiki is to use backslashes, not at signs.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
2016-11-24 22:30:26 +01:00
Luca Pernini
5803971adc
Changing DIO timer condition - merge
2016-11-24 10:52:10 +01:00
Simon Duquennoy
86dbd590db
Merge pull request #1400 from pablocorbalan/nud-with-acks
...
Refresh nbr reachable state after received IPv6 unicast message
2016-11-23 12:00:13 +01:00
Simon Duquennoy
ecd1d57eec
Merge pull request #1661 from yatch/pr-tsch-cooja-mote
...
TSCH on Cooja mote
2016-11-23 11:59:29 +01:00
Harald Pichler
6a1a4b62a0
add more arduino osd examples
2016-11-15 09:37:06 +01:00
Harald Pichler
f9f923d29c
bugfix SPI
2016-11-15 09:36:30 +01:00
Harald Pichler
b708fac68d
Merge branch 'contiki'
2016-11-15 08:29:23 +01:00
Harald Pichler
9f40b0734c
add rfid resources
2016-11-14 11:13:07 +01:00
Harald Pichler
ceb4fb3298
initial upload
2016-11-14 07:44:34 +01:00
Antonio Lignan
efde9132a8
Merge pull request #1769 from gebart/pr/rest-engine-periodic-add-poll
...
rest-engine: Allow adding periodic resources after starting REST engine
2016-11-11 09:01:32 +01:00
Harald Pichler
1398ff0de6
print date to serial1
2016-11-09 15:39:24 +01:00
Harald Pichler
c666b18a12
add hardware serial1 to use with arduino api
2016-11-09 15:14:45 +01:00
Harald Pichler
d2a1f8937e
add coap resoure ip
2016-11-06 16:17:16 +01:00
Cristiano De Alti
1bdec853e1
Prevent interger overflow on the AVR
...
Compiling examples/er-rest-example for the avr-raven gives:
integer overflow in expression [-Woverflow]
On the AVR int is 16 bit and some calculations may overflow.
This happens for example with multiplications involving
CLOCK_SECOND where all the operands are of type int.
Casting one of the operands to clock_time_t forces
the arithmetic to clock_time_t without increasing the size
of the program (the calculation is performed at compile time).
2016-11-05 22:46:42 +01:00
Harald Pichler
d8bb685989
bugfix post led/RGB
2016-11-05 19:34:07 +01:00
Harald Pichler
646bb077ef
move res_red .. to resources folder
2016-11-04 08:40:58 +01:00
Harald Pichler
d66e402cad
bugfix linker problem mix c cpp function
2016-11-03 16:20:22 +01:00
Harald Pichler
5ea437c170
initial upload
2016-11-03 15:46:00 +01:00