Commit Graph

52 Commits (c92407572213c693c4d492180f9cdd0be66b486c)

Author SHA1 Message Date
Kevin Funk e8141ca5d8 cbor: CBOR implementation for RIOT-OS
This is a malloc-free implementation of the Concise Binary Object
Representation (CBOR) data format for the RIOT-OS.

This implementation mostly stand-alone, and it should be pretty easy to
port to other platforms. We're only using the C STL and some custom
network-related functionaliy which could be easily replaced by depending
on arpa/inet.h.

The CBOR API is straight-forward to use and provides encoding/decoding
functionality for all major C types, such as:
- int
- uint64_t
- int64_t
- float
- double
- char*
- struct tm
- time_t

It is possible to conditionally compile this module via CFLAGS:
- CBOR_NO_SEMANTIC_TAGGING: All semantic-tagging features removed
- CBOR_NO_CTIME: All ctime related features removed
- CBOR_NO_FLOAT: All floating-point related features removed
- CBOR_NO_PRINT: All features depending on printf removed
9 years ago
René Kijewski 0ab1b86e5f Add generic `char` pipe implementation 9 years ago
Hauke Petersen 839955cd05 sys: added color module 9 years ago
René Kijewski 467b41ad49 make: easifier usage of module subdirectories
Many modules have subdirectories. Often these subdirectories should only
be included under certain circumstances. Modules that use submodules
currently need to use this pattern:

```make
DIRS = …

all: $(BINDIR)$(MODULE).a
   @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

include $(RIOTBASE)/Makefile.base

clean::
   @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
```

This PR moves the `all:` and `clean::` boilerplate into `Makefile.base`.
9 years ago
René Kijewski 1b89f334e3 msp430: provide oneway-malloc implicitly
For MSP430 boards oneway-malloc is already used *if* `malloc.h` was
included. The problem is that `malloc.h` is not a standard header, even
though it is common. `stdlib.h` in the right place to look for
`malloc()` and friends.

This change removes this discrepancy. `malloc()` is just named like
that, without the leading underscore. The symbols now are weak, which
means that they won't override library functions if MSP's standard
library will provide these functions at some point. (Unlikely, since
using `malloc()` on tiny systems is less then optimal ...)

Closes #1061 and #863.
9 years ago
René Kijewski 96fba8a19b sys:crypto: put ciphers into one module 9 years ago
Fabian Brandt ef5eaff1bc ETX-functionality is now part of a common routing-module 9 years ago
René Kijewski 300d6b3e35 Make: exterminate 'clean' buildtarget
Closes #993.

We do not need to descend into the modules to know what to do on
`make clean BOARD=blub`. We can just invoke `rm -rf bin/blub`.

This PR only keeps the descending into the USEPKGs, since they might
want to delete cached/downloaded/extracted data.
9 years ago
René Kijewski fbc4531877 make: replace findstring with filter in sys/Makefile 9 years ago
René Kijewski de29e4184c Add include paths automatocally for USEMODULES
Application developers use `$(USEMODULES)` in their Makefiles to have
the relevant functionally automagically added to their apps. This even
does basic dependency tracking by means of `Makefile.dep`.

But an important thing is missing: the automatic adding of include
paths. This is inconvenient, error prone, and will hinder the RIOT core
developers in future to change folder structures.
9 years ago
Christian Mehlis 60feb7ea37 posix: move posix semaphore in posix module 9 years ago
Ludwig Ortmann 9b61d95545 make: don't ignore failures in for loops
Add `|| exit 1` to all constructs like `@for i in $(DIRS) ; do "$(MAKE)" -C $$i ; done ;`, so that compilation stops on the first error.
9 years ago
Martin Lenders 4e39cbdd54 Put 6LoWPAN border router in its own module 9 years ago
Martin Lenders 848ac70f90 Implement net_if module 9 years ago
Christian Mehlis e865022a31 pthread: initial add 9 years ago
Oleg Hahm 6c0482b976 Merge pull request #701 from Kijewski/issue-672
Use `filter` instead of `findstring`
9 years ago
René Kijewski 24defa5289 Merge pull request #572 from Kijewski/quad-math
Add quadword math library
9 years ago
René Kijewski d86509db66 Use `filter` instead of `findstring`
See #672
9 years ago
Ludwig Ortmann 2525920426 remove trailing whitespace and newlines 9 years ago
René Kijewski 76bbac4c2b Add quadword math lib
GCC implicitly calls functions like __adddi3 to handle arithmetics on
long long.

Copied from http://ftp3.usa.openbsd.org/pub/OpenBSD/src/lib/libc/quad/
which is curtesy of the OpenBSD project (3 clause BSD license).
9 years ago
Martin Lenders f9ae76fa4b Start POSIX net [pnet] module 9 years ago
Oleg Hahm c7d985d371 removed redundant include pathes from Makefiles 9 years ago
Oleg Hahm 593ee623b6 simplify and unify include pathes
additional:
* exporting include path in sys is mandatory for subfolders
* removed duplicate object file in linker call
9 years ago
Oleg Hahm 7642dd0f1d moved net_help into crosslayer subfolder 9 years ago
Oleg Hahm 59e55c354c moved sixlowpan into network_layer subfolder 9 years ago
Oleg Hahm 2f20e9db51 moved protocol-multiplex into link_layer subfolder 9 years ago
Oleg Hahm 38be829901 moved ieee802154 into link_layer subfolder 9 years ago
Oleg Hahm acd304e1cc moved RPL into routing subfolder 9 years ago
Oleg Hahm a7d3092a4e moved destiny into transport_layer subfolder 9 years ago
Hauke Petersen 05419a5547 Initial import of crypto libs from SecureMicroMesh
- Imported files from secure micro mesh library
- added Makefiles and included libs into sys/Makefile
9 years ago
Christian Mehlis 8ae7750263 import ccn lite 10 years ago
Christian Mehlis 39d5299f69 posix: add semaphore implementation 10 years ago
Oleg Hahm 46deefe0f8 make Makefiles proof for spaces in $PATH 10 years ago
Christian Mehlis 2e44523b51 change the bloom filter to filter arrays of bytes
current implementation of the bloom filter only
handles c strings, this commits changes the hash
functions to work on byte arrays.

additionally I did:
	added to more hashes
	moved hashes in its own sys folder
10 years ago
Christian Mehlis 5ccde8340d add mersenne twister 10 years ago
Oleg Hahm 88b8ccf3e8 Merge pull request #108 from OlegHahm/unmaintained_libs
removed unmaintained code
10 years ago
Oleg Hahm 540515bd98 removed unmaintained tracelog library 10 years ago
Oleg Hahm 5bf958ce20 removed unmaintained syslog library 10 years ago
Oleg Hahm d9189f1756 removed unmaintained logd library 10 years ago
Christian Mehlis 7d84936fd7 add sha256 implementation 10 years ago
Christian Mehlis 5a45d15894 initial bloom filter import 10 years ago
Oleg Hahm 564eb457ad fixing for #79: relocating rpl folder 10 years ago
Oleg Hahm 956f0e8656 fix for #87, replacing - with _ in module protocol_multiplex 10 years ago
Oleg Hahm f7ecc704a4 fixed includes and include pathes 10 years ago
Oleg Hahm 40b3078b7e made rpl a stand-alone module 10 years ago
Oliver Hahm 57cc002c67 Merge branch 'wsn430'
Conflicts:
	core/include/queue.h
	core/queue.c
	cpu/msp430-common/hwtimer_cpu.c
	cpu/msp430x16x/hwtimer_msp430.c
	sys/lib/hashtable.c
	sys/net/ieee802154/ieee802154_frame.c
	sys/shell/commands/sc_cc110x_ng.c
	sys/transceiver/transceiver.c
	sys/vtimer/vtimer.c
10 years ago
Milan Babel 2f5ed66756 created own module for ieee802154
this is needed to include the ieee802154 in drivers without the hole sixlowpan
10 years ago
Martin Lenders 07e8ac9c19 Remove swtimer
see #4
10 years ago
Oliver Hahm e6177e811a * moved cpu and board specific parts to corresponding Makefiles
* introduced variable for cpu folder
10 years ago
Benjamin Valentin 4d73d17662 add Makefiles to sys/net 10 years ago