Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions boards/3dr/ctrl-n1/init/rc.board_sensors
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ board_adc start
iim42653 -R 14 -s -b 1 start
iim42653 -R 14 -s -b 2 start

# Internal DPS310 (barometer)
dps310 -s -b 6 start
# Internal DPS368 (barometer)
dps310 -s -b 6 -8 start

# Internal AK09940A magnetometer
ak09940a -I -b 1 -R 4 start
2 changes: 1 addition & 1 deletion boards/3dr/ctrl-n1/src/spi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ constexpr px4_spi_bus_t px4_spi_buses[SPI_BUS_MAX_BUS_ITEMS] = {
}),
initSPIBus(SPI::Bus::SPI6, {
initSPIDevice(SPIDEV_FLASH(0), SPI::CS{GPIO::PortC, GPIO::Pin13}),
initSPIDevice(DRV_BARO_DEVTYPE_DPS310, SPI::CS{GPIO::PortE, GPIO::Pin3}),
initSPIDevice(DRV_BARO_DEVTYPE_DPS368, SPI::CS{GPIO::PortE, GPIO::Pin3}),
}),
};

Expand Down
Loading