Simon Duquennoy
fbd78a7e3b
Merge pull request #1293 from simonduq/pr/fix-warnings
...
Fix a number of compiler warnings and enable -Werror in Travis
2015-11-10 08:49:11 +01:00
Simon Duquennoy
2daa3d7377
Merge pull request #1269 from tadodotcom/tmp-uip-fallback-iface
...
More flexibility for the fallback interface
2015-10-20 11:33:14 +02:00
Adam Dunkels
4cab313b8c
Fix compiler warnings
2015-10-20 10:11:34 +02:00
Adam Dunkels
06dfce6d46
The -pedantic and -stdc flags trigger a few too many warnings
2015-10-20 10:11:33 +02:00
Simon Duquennoy
0340567af8
tapdev6.c: do not ignore return value of system()
2015-10-20 09:37:18 +02:00
Simon Duquennoy
2c91ab6fad
linuxradio-drv.c: added missing include
2015-10-20 09:37:17 +02:00
Vladimir Pouzanov
2d75926989
Fixed linuxradio-drv guard macro name
2015-09-29 12:29:08 +01:00
Vladimir Pouzanov
bd1b7d9814
Fixed linuxradio compilation issues with native and minimal-net
2015-09-28 12:48:01 +01:00
Vladimir Pouzanov
4c8618e6ba
Extracted linuxradio device name to contiki-conf
2015-09-28 12:48:00 +01:00
Vladimir Pouzanov
52c90519d9
Fixed missing #includes and restricted linuxradiodrv compilation to linux
2015-09-28 12:48:00 +01:00
Vladimir Pouzanov
43a327df5a
Cleaned up and re-formatted source of linuxradiodrv
2015-09-28 12:47:12 +01:00
Vladimir Pouzanov
113d9761f7
Better failure handling in linuxradiodrv
2015-09-28 12:47:12 +01:00
Vladimir Pouzanov
5fed4a3f1c
Using MAX_PACKET_SIZE where appropriate in linuxradiodrv
2015-09-28 12:47:12 +01:00
Vladimir Pouzanov
beef4f5d5d
Added better error handling to linuxradiodrv transmit()
2015-09-28 12:47:12 +01:00
Vladimir Pouzanov
8a068f8512
Cleaned up linuxradiodrv code
2015-09-28 12:47:12 +01:00
Vladimir Pouzanov
867368b929
Basic NETSTACK_CONF_RADIO based on kernel 802.15.4
2015-09-28 12:47:11 +01:00
Víctor Ariño
561e70b18e
Updated current fallback_interface(s) to return int.
2015-09-22 12:53:04 +02:00
Valentin Sawadski
b729dc8985
Don't override LDFLAGS on Linux for the native CPU
2015-09-10 11:13:22 +02:00
Laurent Deru
1784338b2e
Add uip_clear_buf() macro and replace all instances of uip_len = 0; with it
2015-06-15 11:10:51 +02:00
Simon Duquennoy
a9cc909794
Network layer configuration: replace UIP_CONF_* with NETSTACK_CONF_WITH_*
2014-12-01 21:02:57 +01:00
Adam Dunkels
5f3fe7f7c7
Updated include paths for the moved files under net/
2014-01-26 23:20:23 +01:00
Adam Dunkels
bb2dcaa057
A massive all-tree automated update of all double inclusion guard #defines that changes from using two underscores as a prefix, which are reserved, to not using two underscores as a prefix
2013-11-24 20:20:11 +01:00
Adam Dunkels
469884171a
Added the const keyword to functions that use the tcpip_set_outputfunc(), which now takes a const argument
2013-11-18 23:26:37 +01:00
Oliver Schmidt
6ab336f55f
Several minor consistency improvements.
2013-07-31 00:55:31 +02:00
Oliver Schmidt
116c3f119b
unistd.h doesn't seem to be necessary but breaks the MS VC build.
2013-07-31 00:02:29 +02:00
Robert Quattlebaum
9c70e0e5cc
native/net/tapdev: Fix for new UIP_CONF_IPV6
handling.
2013-05-19 17:27:30 -07:00
Robert Quattlebaum
b8c0f2de6c
cpu/native: Add file-backed simulated EEPROM to native cpu.
...
This patch removes a defunct EEPROM implementation from the native
platform and provides a new EEPROM implementation for the native cpu.
The previous implementation appears to be vestigal.
This is useful for testing code which uses the EEPROM without running
the code on the actual hardware.
By default the code will create a new temporary file as the EEPROM
backing, reinitializing each time. If you would like to preserve the
EEPROM contents or specify a specific EEPROM file to use, you can set the
`CONTIKI_EEPROM` environment variable to the name of the EEPROM file you
wish to use instead. If it already exists, its contents will be used.
If it does not already exist, it will be created and initialized by
filling it with `0xFF`---just like a real EEPROM.
A new example is also included, which was used to verify the correctness
of the implementation. It can easily be used to verify the EEPROM
implementations of other targets.
2013-05-18 10:29:41 -07:00
Adam Dunkels
59a8df14a8
Merge pull request #189 from sieben/markdown
...
Update to markdown
2013-05-16 00:24:25 -07:00
François Revol
7967779e6c
tapdev: Fix using an uninitialized buffer
2013-04-20 14:42:19 +02:00
Rémy Léone
e6bd4f1dde
Rename to md
2013-03-26 23:15:37 +01:00
Rémy Léone
7b40a568a6
Update to markdown
...
- Spellchecking
- Update plain text to github markdown
2013-03-26 16:55:19 +01:00
François Revol
22bcb07c61
tapdev: Log to stderr; add tracing
...
Use stderr for logging to avoid polluting stdout.
Add some DEBUG tracing.
2013-03-19 19:41:20 +01:00
Adam Dunkels
39e5a8c6dc
Merge pull request #80 from darconeous/mdns-resolv
...
Adds IPv6 and MDNS domain name resolution.
2013-03-10 12:58:39 -07:00
Robert Quattlebaum
1d113f52ad
core/net/uip: Rename uip_ethaddr
to uip_lladdr
.
...
There isn't really a good reason I can think of for these
to be different between IPv4 and IPv6.
2013-03-10 11:39:11 -07:00
Robert Quattlebaum
38b2863831
Update cpu/native/Makefile.native
2013-02-26 11:29:04 -08:00
Robert Quattlebaum
a571b663b0
platform/minimal-net: Better, more seamless support for OS X.
...
This patch enables automatic route setup and cleanup when
starting and stopping the minimal-net target on OS X.
Both IPv4 and IPv6 are supported.
Using the minimal-net target on OS X was absolute hell
before I came up with this patch. Now it is painless.
2013-01-30 09:17:30 -08:00
Robert Quattlebaum
092b6f3baa
platform/minimal-net: Implement better idle behavior.
...
The minimal-net target, as currently written, wakes up the
CPU every millisecond to check for packets, and will only
react in real-time to input from stdin. If you are running
this on a laptop battery, your battery will quickly drain.
This change allows the CPU to idle when there is literally
nothing to do while still being responsive to input from
stein and/or incoming packets. This fix should significantly
improve performance while significantly improving power
usage. Win-win.
Also added `_xassert()` implementation so that the contiki-
provided `assert()` macro will work properly when used
on this platform.
2013-01-30 09:17:29 -08:00
Adam Dunkels
db41a51ae6
Make gcc default LD, and allow override with LD_OVERRIDE
2012-11-21 19:46:31 +01:00
Ilya Dmitrichenko
d0f18e5d04
Fixed LDFLAGS for cross-compiling of "native"
2012-11-21 18:09:29 +00:00
Ilya Dmitrichenko
092c69639c
Enable native
target for cross-compiling -
...
by now it would have worked if you set CC via
command line (e.g. `make CC=clang`, though it
wouldn't work when CC is set in the platform
makefile which includes `Makefile.native`.
2012-11-21 18:09:10 +00:00
Adam Dunkels
944537fccf
Removed all old RCS tags in the Contiki source tree. Those RCS tags are not used any more, as we are now using git to manage the Contiki source tree
2012-10-26 15:54:49 +02:00
Niclas Finne
f5c8cff5b2
Made MT stack size configurable
2012-10-23 00:52:52 +02:00
Ilya Dmitrichenko
49cd7878e3
Avoid deprecated error on Darwin.
2012-03-02 15:15:47 -05:00
Ilya Dmitrichenko
499d3052ee
Fixed TARGET=native compilation issues on Darwin.
2012-03-02 15:15:42 -05:00
Nicholas J Humfrey
1cda3da17e
Converted u8_t to uint8_t and u16_t to uint16_t in the cpu directory.
2012-02-21 08:33:24 -05:00
David Kopf
9d6542d49b
Fix minimal-net webserver6, broken after native border router changes.
2012-02-11 15:03:24 -05:00
David Kopf
b251619a2f
Add wpcap for cygwin/Windows native border router
2012-01-08 13:37:56 -05:00
Oliver Schmidt
e38f008b9b
The dependency on the ucontext functions has the potential to keep others from successfully using cpu/native for other platforms. As the Contiki multithreading library typically isn't used at all it's not worth the trouble. So we just limit it to Windows and Linux - where it is known to not only build but actually work. If someone needs the Contiki cpu/native multithreading library on another platform he's certainly welcome to add that platform - hopefully by just activating the codepath that we now made exclusive for Linux for his platform.
2011-11-30 23:41:39 +01:00
David Kopf
cf3241c5db
Add file needed for rpl border router
2011-07-24 12:07:39 -04:00
David Kopf
6ea7250af7
Change ctimer startup order, add multihop to wpcap and minimal-net platform.
2011-06-30 12:12:07 -04:00