GitHub basic tutorial
  • Introduction
  • Khởi động hệ thống Ground station computer - Companion computer (Odroid) - Pixhawk
  • Tao 1 private Folder tu public Folder
  • Tạo folder dev PX4 code
  • PX4 modification
  • MAVROS modification
  • Tạo node I3S_receiver
  • Kết nối đọc dữ liệu trong Pixhawk
  • Terminal Linux Ubuntu
  • Kết nối ROS hai máy tính
  • Build ros package in Odroid
  • Pressure sensor
  • Kết nối camera oCAM trên ROS
  • Cài đặt và sử dụng Matlab 2017b trên Linux Ubuntu
  • Một vài vấn đề trên Windows 7
  • Terminator
  • Upload compiled firmware of Pixhawk from odroid
  • Kết nối internet và Ethernet với Odroid (qua Switch) và 1 card mạng kết nối internet
  • IMU, Camera, Pixhawk connection to odroid
  • Kết nối ssh
  • Tham khao code homography cua Ninad
  • Matlab_2017b_problems
  • Eigen library - Mathematical toolbox for C++
  • Kinh nghiệm chuẩn bị presentation
  • Tap lenh lam viec voi Pixhawk px4
  • Offboard mode in PX4
  • P51 Lenovo, trackpad and trackpoint
  • P51 Lenov, Install Quadro M2200 graphic card
  • Gilab
  • Tao 1 private Folder tu public Folder
  • Ubuntu tips: show desktop by pressing Super + D
  • Install eclipse
  • Windows error
  • How to update Sublime Text 3 in ubuntu 16.04
  • PX4 Pixhawk hardfault
  • Install CUDA for computer with NVIDIA graphic card
  • Install openCV after installing CUDA
  • Meld - tool for file or folder comparison
  • GIT - move a full git repository from one remote sever to another one
  • Jetson Nano Installation
  • Working in Jetson Nano
  • Backup and Restore micro sd card
Powered by GitBook
On this page

Was this helpful?

Working in Jetson Nano

  1. Pixhawk connects with Jetson Nano through the ttyACM0 and ttyUSB0.

However, when launch roslaunch px4.launch (over ttyACM0), there is problem of permission. Therefore, we need to do

sudo chmod 777 /dev/ttyACM0

Then everything is ok

  1. Becareful with the key when install ros in jetson nano. May be need to delete and install new key by

sudo apt-key del ....

sudo -E apt-key adv --keyserver ' .....' --recv-key .....

then need to do update

sudo apt clean && sudo apt update
  1. For installing and compile mavlink

sudo pip install lxml future
  1. install geographics-msgs

sudo -H apt-get install -y ros-melodic-geographics-msgs
  1. Install geographiclib

wget ....install_geographiclib_datasets.sh
sudo chmod 777 install_geographiclib_datasets.sh
sudo ./install_geographiclib_datasets.sh
  1. install libgeographic-dev

sudo apt-get install libgeographic-dev
  1. Note that when compile mavros, it take time and computer resources, so may need to specify the processor core for that purpose, to avoid stuck.

Mavlink and mavros folder containning modifications corresponding to custom messages are copied from the auv7530 to jetson nano, then compile and work properly.

After install opencv, cuda, i3s vision sensor, cutecom, mavlink, mavros .... in 64 GB microSD card, there is 25GB available.

PreviousJetson Nano InstallationNextBackup and Restore micro sd card

Last updated 5 years ago

Was this helpful?