Always use FILE* for standard output.
The threads running commands for clients through the Posix daemon used to write to a char buffer through snprintf (etc.) which was then written directly to the file descriptor, whereas in the other case printf (etc.) was used to write to stdout (FILE*). Both versions used some macro's and repeated code to have the same output. This change unifies these two cases by using a FILE* in both cases. The (line) buffering is done by the standard C library's implementation (just like with stdout), and px4_log.c now uses the same code in all cases (using fprintf, etc.) for printing (colored) output.
Showing
- platforms/posix/include/px4_daemon/server_io.h 6 additions, 19 deletionsplatforms/posix/include/px4_daemon/server_io.h
- platforms/posix/src/px4_daemon/client.cpp 1 addition, 0 deletionsplatforms/posix/src/px4_daemon/client.cpp
- platforms/posix/src/px4_daemon/server.cpp 39 additions, 15 deletionsplatforms/posix/src/px4_daemon/server.cpp
- platforms/posix/src/px4_daemon/server.h 2 additions, 2 deletionsplatforms/posix/src/px4_daemon/server.h
- platforms/posix/src/px4_daemon/server_io.cpp 17 additions, 34 deletionsplatforms/posix/src/px4_daemon/server_io.cpp
- src/drivers/linux_pwm_out/navio_sysfs.cpp 1 addition, 0 deletionssrc/drivers/linux_pwm_out/navio_sysfs.cpp
- src/drivers/linux_pwm_out/ocpoc_mmap.cpp 1 addition, 0 deletionssrc/drivers/linux_pwm_out/ocpoc_mmap.cpp
- src/drivers/navio_sysfs_rc_in/navio_sysfs_rc_in.cpp 1 addition, 0 deletionssrc/drivers/navio_sysfs_rc_in/navio_sysfs_rc_in.cpp
- src/drivers/rpi_rc_in/rpi_rc_in.h 1 addition, 0 deletionssrc/drivers/rpi_rc_in/rpi_rc_in.h
- src/modules/logger/util.cpp 1 addition, 0 deletionssrc/modules/logger/util.cpp
- src/modules/uORB/uORB_tests/uORBTest_UnitTest.hpp 1 addition, 0 deletionssrc/modules/uORB/uORB_tests/uORBTest_UnitTest.hpp
- src/platforms/common/CMakeLists.txt 1 addition, 1 deletionsrc/platforms/common/CMakeLists.txt
- src/platforms/common/px4_log.c 34 additions, 100 deletionssrc/platforms/common/px4_log.c
- src/platforms/px4_log.h 0 additions, 18 deletionssrc/platforms/px4_log.h
- src/systemcmds/tests/test_hysteresis.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_hysteresis.cpp
- src/systemcmds/tests/test_microbench_hrt.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_microbench_hrt.cpp
- src/systemcmds/tests/test_microbench_math.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_microbench_math.cpp
- src/systemcmds/tests/test_microbench_matrix.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_microbench_matrix.cpp
- src/systemcmds/tests/test_microbench_uorb.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_microbench_uorb.cpp
- src/systemcmds/tests/test_mixer.cpp 1 addition, 0 deletionssrc/systemcmds/tests/test_mixer.cpp
Loading
Please register or sign in to comment