- Jun 18, 2015
-
-
Mark Charlebois authored
Added __attribute__ ((unused)) for variables used only for log output and flagged as unused if the message log level is compiled out. Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
- Jun 17, 2015
-
-
Mark Charlebois authored
Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
The device level debug will have to be removed and the debugging can be based on this new logging structure which can tell where an error (or debug output) occured whch the current implmentation cannot. The one limitation is the new macros cannot take a char* for the format parameter. It must be an actual string literal because it is concatenated with other strings. Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Lorenz Meier authored
Compile Time - Conditional inclusion of the Node Allocation and FW Server
-
David Sidrane authored
-
- Jun 16, 2015
-
-
Lorenz Meier authored
Makefile cleanup
-
Mark Charlebois authored
APU requires the use of ?= for MK_DIR but the use of lastword was causing MK_DIR to be a subdir of makefiles. Changed lastword to firstword (which is always the path to firmware.mk) which fixed the problem. Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
Added description of how to create required directories Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
Moved nuttx specific make rules to files in makefiles/nuttx. All target specific makefiles are in their target sub directories. To minimize file duplication, targets that share rules include a common file. For example the posix and posix-arm targets both use makefiles/posix/posix_elf.mk Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Lorenz Meier authored
gyrosim: removed dead code from gyrosim
-
Lorenz Meier authored
SITL: updated README and rc.S
-
Mark Charlebois authored
Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Mark Charlebois authored
Changed rc.S to rcS. Updated README.md to explain the require directory structure and where to run mainapp from for SITL to work correctly. Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Lorenz Meier authored
SITL: fixed path to mainapp in documentation
-
- Jun 15, 2015
-
-
Mark Charlebois authored
The updated path os Build/posix_sitl.build/ Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Lorenz Meier authored
add simulated gps driver to startup for SITL
-
tumbili authored
-
Lorenz Meier authored
-
Lorenz Meier authored
-
Lorenz Meier authored
SITL: changed posix_default to posix_sitl
-
Lorenz Meier authored
This is a temporary hot fix for lost data
-
David Sidrane authored
-
Mark Charlebois authored
The SITL build is now the default posix build. The linker script for posix was moved to makefiles/posix. The rc.S file was moved to posix-configs/SITL/init/ The POSIXTEST board definition is now SITL To run the SITL test run: make sitlrun This replaces the make posixrun target. The build directory is now Build/posix_sitl.build/ Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-
Ban Siesta authored
-
Ban Siesta authored
before an advertiser for multi_pub/subs. This is achieved using - A "published" flag for each uORB device node - A check before increasing the instance count (basically, a node is re-used if nothing has been published on it before which means that it has been created by a subscriber.
-
Ban Siesta authored
-
Ban Siesta authored
-
Ban Siesta authored
-
Ban Siesta authored
-
Ban Siesta authored
test which fails because it does the subscription before the advertisement.
-
Ban Siesta authored
-
Ban Siesta authored
-
Ban Siesta authored
-
Ban Siesta authored
-
Lorenz Meier authored
POSIX: px4_getpid() fix
-
Roman authored
-
Lorenz Meier authored
Shifted the set() function for Matrix3x3, Vector2, Vector3, Vector4 to a...
-
Mark Charlebois authored
Since the PX4 code uses both px4_task and pthread APIs, px4_getpid() must be save to call from either context. On posix, this means we have to always return the pthread ID. Reverted simulator change of pthread to px4_task There may have been side effects if this was build for a target that has process/task scoped file descriptors. It is now safe to call px4_getpid() from this pthread context with this change for the posix build for px4_getpid(). Signed-off-by:
Mark Charlebois <charlebm@gmail.com>
-