POSIX: Added PX4_ROOTFSDIR to file paths

Set a default path relative to current dir for the posix target.

Running make posixrun will create the required directoroes and then run
mainapp from its build location.

PX4_ROOTFSDIR is set to nothing for nuttx.

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois
2015-06-11 21:36:13 -07:00
parent 0c43803ec7
commit 4d1ae6269b
10 changed files with 25 additions and 14 deletions
+1 -2
View File
@@ -104,8 +104,7 @@ int uORBTest::UnitTest::pubsublatency_main(void)
if (pubsubtest_print) {
char fname[32];
//sprintf(fname, "/fs/microsd/timings%u.txt", timingsgroup);
sprintf(fname, "/tmp/timings%u.txt", timingsgroup);
sprintf(fname, PX4_ROOTFSDIR"/fs/microsd/timings%u.txt", timingsgroup);
FILE *f = fopen(fname, "w");
if (f == NULL) {
warnx("Error opening file!\n");