Skip to content

Commit

Permalink
Analog Device ADIS16497 IMU initial support
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkabir authored and dagar committed Feb 25, 2019
1 parent d5aad58 commit 20e44aa
Show file tree
Hide file tree
Showing 10 changed files with 1,377 additions and 0 deletions.
1 change: 1 addition & 0 deletions boards/av/x-v1/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ px4_add_board(
gps
#heater
imu/adis16477
imu/adis16497
#imu # all available imu drivers
irlock
lights/blinkm
Expand Down
1 change: 1 addition & 0 deletions boards/px4/fmu-v5/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ px4_add_board(
gps
#heater
imu/adis16448
imu/adis16497
#imu # all available imu drivers
imu/bmi055
imu/icm20948
Expand Down
2 changes: 2 additions & 0 deletions src/drivers/drv_sensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@
#define DRV_GYR_DEVTYPE_ADIS16477 0x60
#define DRV_ACC_DEVTYPE_LSM303AGR 0x61
#define DRV_MAG_DEVTYPE_LSM303AGR 0x62
#define DRV_ACC_DEVTYPE_ADIS16497 0x63
#define DRV_GYR_DEVTYPE_ADIS16497 0x64

/*
* ioctl() definitions
Expand Down
1 change: 1 addition & 0 deletions src/drivers/imu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

add_subdirectory(adis16448)
add_subdirectory(adis16477)
add_subdirectory(adis16497)
add_subdirectory(bma180)
add_subdirectory(bmi055)
add_subdirectory(bmi160)
Expand Down
Loading

0 comments on commit 20e44aa

Please sign in to comment.