赞
踩
配置nuttx操作系统
1.打开menuconfig
先运行如下指令,什么是menuconfig。
$ make px4_fmu-v3_default menuconfig
可能出现如下报错,没有错误的此步忽略
/bin/sh: 1: kconfig-mconf: not found
tools/Makefile.unix:518: recipe for target 'menuconfig' failed
make: *** [menuconfig] Error 127
上述错误原因大概率是没有安装KConfig,安装方法如下,安装过程可能出现的问题及解决方法
$ git clone https://bitbucket.org/nuttx/tools.git
$ cd tools/kconfig-frontends
###################### on MacOS do the following#########################
$ patch < ../kconfig-macos.diff -p 1
$ ./configure --enable-mconf --disable-shared --enable-static --disable-gconf --disable-qconf --disable-nconf
#####################on Linux do the following###########################
$ ./configure --enable-mconf --disable-nconf --disable-gconf --disable-qconf
$ make
$ make install
2.配置menuconfig相关内容
安装完成后执行make px4_fmu-v3_default menuconfig就可以进入如下界面
打开PX4中与CAN相关的设备文件
Arrow keys navigate the menu in the bottom
Enter select submenus- - ->, or empty submenus - - - -
press Y includes, N excludes
…
Device Drivers —> CAN Driver Support
Application Configuration —> CAN Utilities —> CAN utility library
Application Configuration —> Examples —> CAN example
System Type —> STM32 Peripheral Support —> CAN1
3.修改固件源码
修改can的程序./platforms/nuttx/NuttX/apps/examples/can/can_main.c
在程序中添加初始化的代码can_devinit(),放在CAN初始化的代码里面
4. 设置验证
#编译下载 $ make px4_fmu-v3_default upload #打开mavlink console $ ./Tools/mavlink_shell.py /dev/ttyACM0 Connecting to MAVLINK... NuttShell (NSH) NuttX-10.2.0 nsh> nsh> #输入 can 指令 nsh> can #输出 nmsgs: 0 min ID: 1 max ID: 2047 Bit timing: Baud: 250000 TSEG1: 6 TSEG2: 7 SJW: 1 ID: 1 DLC: 1
至此即表示CAN驱动配置完成,可以编写应用程序进行开发
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。