- 20 May, 2015 40 commits
-
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
* Omit c++11 compiler check if specified in configure * Don't add pthread * Append flags from toolchain file to the compiler flags (this should happen automatically, but the CMakeForceCompiler module does not seem to work)
-
Joseph Noir authored
A toolchain file can be used to specify compiler, flags and system for cross compiling. Since the include of the ForceCompiler CMake module did not work, we used the commands specified in the module directly. Among other things, this disables the cmake compiler check. The CMake file implements an additional compiler check to check for c++11, which does not work with the arm-none-eabi cross compiler, a new flag was added to skip this check.
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
Extern C is not included in the RIOT headers.
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
wait_until is not working, however (chrono is not available in RIOT).
-
Joseph Noir authored
Should work with vtimer(&now), but it seems I am using it wrong? Need to figure out why it does not work the way I expect it to.
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
Includes join, thread and clean up for stack.
-
Joseph Noir authored
Thread, mutex and condition_variable are offered through our according namespaces in the caf namespace.
-
Joseph Noir authored
-
Joseph Noir authored
Release the pointer to the stack and set the handle to uninitialized, also don't decrement the stack count if thread object is destroy, but does not hold a handle to a valid thread.
-
Joseph Noir authored
-
Joseph Noir authored
Creating the stack for a RIOT thread in the main is a problem, as the main does have the same stack size.
-
Joseph Noir authored
Decrement count when thread is destroyed
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
In case this is compiled for RIoT, the header does not necessarily have the extern C def.
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
-
Joseph Noir authored
The wrappers allow compatibility with RIOT.
-
Joseph Noir authored
These headers implement thread, mutex and condition_variable based on RIOT thread and mutex. A new configure option allows a build for RIOT and uses these implementations instead of the STL ones.
-
Joseph Noir authored
Clashes with logging
-
Joseph Noir authored
-