当前位置:   article > 正文

PIX4中CAN调试——学习记录_px4 can

px4 can


固件版本:V1.13.0
编译版本:make px4_fmu-v3_default

一、先行知识—nuttx驱动

Nuttx驱动知识—学习记录

二、PX4中CAN驱动设置

配置nuttx操作系统

1.打开menuconfig

先运行如下指令,什么是menuconfig

$ make px4_fmu-v3_default menuconfig
  • 1

可能出现如下报错,没有错误的此步忽略

/bin/sh: 1: kconfig-mconf: not found
tools/Makefile.unix:518: recipe for target 'menuconfig' failed
make: *** [menuconfig] Error 127
  • 1
  • 2
  • 3

上述错误原因大概率是没有安装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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

至此即表示CAN驱动配置完成,可以编写应用程序进行开发

PX4中编写简单的CAN应用程序—学习记录

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/172424
推荐阅读
相关标签
  

闽ICP备14008679号