Commit Graph

13538 Commits (8a36c33a6ca641d3db6c4dede4c45021259d82b5)
 

Author SHA1 Message Date
Oleg Hahm 8a36c33a6c doc: boards: fix and add documentation 6 years ago
Oleg Hahm 5ff3a1c957 doc: doxygen: update exclude paths 6 years ago
Oleg Hahm 1660abdc70 doc: cpu: fix doxygen 6 years ago
Oleg Hahm 8ec5bcad89 doc: ipv6: fix broken doxygen 6 years ago
Oleg Hahm d523c33015 doc: gnrc: fix doxygen and add missing doc 6 years ago
Oleg Hahm 3bc0cfd2a7 doc: color: fix doxygen 6 years ago
Oleg Hahm 9225ede2b9 doc: hashes: fix API docs 6 years ago
Oleg Hahm e2914bd351 doc: random: document float PRNG macro 6 years ago
Oleg Hahm e420c7ad9e doc: xtimer: added missing documentation 6 years ago
Oleg Hahm d48330acbb doc: posix: fix doxygen complaints 6 years ago
Joakim Nohlgård d559428cc6 Merge pull request #6662 from smlng/pr/tests/opt_xtimer_drift
tests: optimize xtimer drift for size
6 years ago
Joakim Nohlgård 887cc72365 Merge pull request #5616 from gebart/pr/vfs
vfs: file system abstraction
6 years ago
Peter Kietzmann 8c86aa787d Merge pull request #6692 from smlng/pr/cc2538/fix_xtimer_params
cc2538: fix xtimer
6 years ago
Oleg Hahm 408d18b57b Merge pull request #6587 from gebart/pr/stdatomic-sync-discard-order
msp430: Discard order argument when using __sync_xxx for atomics
6 years ago
smlng 40431fe5e3 cc2538: add feature periph_pm 6 years ago
smlng ba3a46435c cc2538: revert xtimer params from #5608 6 years ago
Joakim Nohlgård 8f81121f29 boards/mulle: Add FRAM to DevFS 6 years ago
Joakim Nohlgård e021b3b3f1 drivers/nvram: Add vfs compatible functions 6 years ago
Kaspar Schleiser 26b99a57be cpu: native: add vfs wrappers 6 years ago
Joakim Nohlgård 0371769e72 devfs: Dynamic file system for device nodes 6 years ago
Joakim Nohlgård fdd129db68 uart_stdio: Bind uart_stdio to vfs fds for stdin/out/err 6 years ago
Joakim Nohlgård a1faeb9ca1 newlib: Use vfs for file I/O syscalls 6 years ago
Joakim Nohlgård dcc37329df sys/vfs: A virtual file system (VFS) layer for RIOT
The VFS layer provides file system abstractions to allow using a unified
interface to access files from mounted file systems.
6 years ago
Joakim Nohlgård 5e27bf4f31 msp430: Add all expected POSIX unistd.h declarations 6 years ago
Vincent Dupont 3485ab4e96 msp430: add libc missing symbols and defines 6 years ago
Joakim Nohlgård 9ec001b84b atmega_common: Update unistd.h with prototypes of all POSIX defined functions and constants 6 years ago
Joakim Nohlgård 738876a98f cpu/atmega_common: Improve POSIX headers 6 years ago
Joakim Nohlgård 89ba41c79e sys/posix: Add sys/statvfs.h 6 years ago
Martine Lenders 60fda890a6 Merge pull request #6704 from OlegHahm/posix_socket_missing_parens
posix: missing closing parenthesis
6 years ago
Martine Lenders cf29ced346 Merge pull request #6710 from cgundogan/pr/random_warning
random: doc: warn about global PRNG state
6 years ago
Cenk Gündoğan 83a69c0cb2 random: doc: warn about global PRNG state 6 years ago
Joakim Nohlgård 03d9f0f3d8 sys/posix: Add fcntl.h 6 years ago
Joakim Nohlgård 5638359960 tools/externc: Remove #endif in extern C pattern match
Enable adding more C++ specifics inside the same ifdef block (e.g. sys/include/vfs.h)
6 years ago
Joakim Nohlgård 0f74b5b2a0 tests/emb6: Revert workaround for false positive
This line gave a -Wunused-value in gcc-4.6 before the stdatomic.h header
for msp430 was modified as a workaround.
6 years ago
Joakim Nohlgård 33566a2fe7 msp430: Discard order argument when using __sync_xxx for atomics 6 years ago
Joakim Nohlgård 302d5d35e9 Merge pull request #6700 from haukepetersen/opt_vendorheaders
cpu: moved all vendor headers to CPUNAME/include/vendor/
6 years ago
Hauke Petersen 19bf9f8d0f dist/externc: exclude all (CPU) vendor headers 6 years ago
Hauke Petersen 997244f9d7 cpu/stm32f2: fixed blank lines at EOF 6 years ago
Hauke Petersen 0fb3ee3b9b dist/cppcheck: exclude only vendor headers 6 years ago
Hauke Petersen 1ae911e889 cpu/cc26x0: fixed doxygen issues 6 years ago
Hauke Petersen ef3cdde903 cpu/atmega_common: fixed doxygen issues 6 years ago
Hauke Petersen 37d4f44379 cpus: mv vendor headers to include/vendor/. 6 years ago
Hauke Petersen fa59955eff doc: removed CPU excludes from doxyfile 6 years ago
Oleg Hahm 6022760fc6 posix: missing closing parenthesis 6 years ago
Hauke Petersen f3d3c08e2a Merge pull request #6679 from brummer-simon/ringbuffer-remove-bugfix
core: bugfix: ringbuffer_remove
6 years ago
Martine Lenders 7748dc8ce3 Merge pull request #6695 from francois-berder-imgtec/awalwm2m
posix_sockets: Various fixes in posix network implementation
6 years ago
Francois Berder a5003e8311 posix: in: Fix sockaddr_in6 structure
The sin6_family member was an int. This caused the structure to
take 32 bytes which was greater than sockaddr_storage size (28
bytes).
Using the type sa_family_t for sin6_family member fixes this
issue.

Signed-off-by: Francois Berder <francois.berder@imgtec.com>
6 years ago
Francisco Acosta 1e8b3c8808 Merge pull request #6682 from dkm/pr/gpio_cleanup
cpu/lm4f120: remove useless gpio_pp_t type
6 years ago
Francois Berder de41971aab posix: sockets: Fix return value of sendto and recvfrom
The return value of these functions was not always correct
in case of errors: they were not returning -1 and setting
errno.

Signed-off-by: Francois Berder <francois.berder@imgtec.com>
6 years ago
Francisco Acosta 7ec6fcacdf Merge pull request #6667 from aabadie/fix_test_xbee
test/driver_xbee: fix xbee param UART export in Makefile
6 years ago