Browse Source
This PR is preliminary ground work for FMUv5. PX4 does not use the NuttX adc driver. But used the same format for the data returned by the nuttx ADC driver. There was a fixme:in src/platforms/px4_adc.h "this needs to be a px4_adc_msg_s type" With this PR the need for src/platforms/px4_adc.h goes away as the driver drv_adc.h now describes the px4_adc_msg_t.sbg
13 changed files with 50 additions and 101 deletions
@ -1,2 +1,2 @@
@@ -1,2 +1,2 @@
|
||||
int16[8] channel_id # ADC channel IDs, negative for non-existent |
||||
float32[8] channel_value # ADC channel value in volt, valid if channel ID is positive |
||||
int16[12] channel_id # ADC channel IDs, negative for non-existent |
||||
float32[12] channel_value # ADC channel value in volt, valid if channel ID is positive |
||||
|
@ -1,67 +0,0 @@
@@ -1,67 +0,0 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* Copyright (c) 2014 PX4 Development Team. All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions |
||||
* are met: |
||||
* |
||||
* 1. Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* 2. Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in |
||||
* the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* 3. Neither the name PX4 nor the names of its contributors may be |
||||
* used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||
* POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
****************************************************************************/ |
||||
|
||||
/**
|
||||
* @file px4_adc.h |
||||
* |
||||
* ADC header depending on the build target |
||||
*/ |
||||
|
||||
#pragma once |
||||
|
||||
#include <stdint.h> |
||||
|
||||
#if defined(__PX4_ROS) |
||||
#error "ADC not supported in ROS" |
||||
#elif defined(__PX4_NUTTX) |
||||
/*
|
||||
* Building for NuttX |
||||
*/ |
||||
#include <nuttx/analog/adc.h> |
||||
#elif defined(__PX4_POSIX) |
||||
|
||||
// FIXME - this needs to be a px4_adc_msg_s type
|
||||
// Curently copied from NuttX
|
||||
struct adc_msg_s { |
||||
uint8_t am_channel; /* The 8-bit ADC Channel */ |
||||
int32_t am_data; /* ADC convert result (4 bytes) */ |
||||
} __attribute__((packed)); |
||||
|
||||
// Example settings
|
||||
#define ADC_BATTERY_VOLTAGE_CHANNEL 10 |
||||
#define ADC_BATTERY_CURRENT_CHANNEL ((uint8_t)(-1)) |
||||
#define ADC_AIRSPEED_VOLTAGE_CHANNEL 11 |
||||
#define ADCSIM0_DEVICE_PATH "/dev/adc0" |
||||
#else |
||||
#error "No target platform defined" |
||||
#endif |
Loading…
Reference in new issue