发表于 2020-6-24 11:57:04
6538 浏览 8 回复
编译include出错
为什么总是编译的时候总是提示#include<px4_app.h>出错,No such file or directory,明明别的文件可以,自己写的却不行,需要添加什么东西吗。
编译错误提示如下
/src/examples/r_uart/r_uart.c:17:10: fatal error: px4_app.h: No such file or directory
#include <px4_app.h>
^~~~~~~~~~~
compilation terminated.
源代码include如下
#include <stdio.h>
#include <termios.h>
#include <unistd.h>
#include <stdbool.h>
#include <errno.h>
#include <drivers/drv_hrt.h>
#include <uORB/topics/llyyff.h>
#include <uORB/uORB.h>
#include <string.h>
#include <systemlib/err.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <px4_platform_common/log.h>
#include <px4_log.h>
#include <px4_app.h>
#include <px4_tasks.h>
风帆已获得悬赏 1 阿木币 最佳答案
包含文件都没有的话,查查那个文件是否存在啊~~~
扫一扫浏览分享
发表于 2020-6-24 12:22:25
发表于 2020-6-24 12:17:37
楼主|
发表于 2020-6-24 13:11:14
楼主|
发表于 2020-6-24 13:11:48
楼主|
发表于 2020-6-24 13:54:11
发表于 2020-6-24 14:07:07
楼主|
发表于 2020-6-24 19:24:47
别的程序都可以include怎么可能不存在呢?就自己写的不行
楼主|
发表于 2020-6-27 15:51:34