73 lines
1.7 KiB
C
73 lines
1.7 KiB
C
/*
|
|
* This file is part of Cleanflight.
|
|
*
|
|
* Cleanflight is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Cleanflight is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef enum {
|
|
OWNER_FREE = 0,
|
|
OWNER_PWMINPUT,
|
|
OWNER_PPMINPUT,
|
|
OWNER_MOTOR,
|
|
OWNER_SERVO,
|
|
OWNER_LED,
|
|
OWNER_ADC,
|
|
OWNER_ADC_BATT,
|
|
OWNER_ADC_CURR,
|
|
OWNER_ADC_EXT,
|
|
OWNER_ADC_RSSI,
|
|
OWNER_SERIAL_TX,
|
|
OWNER_SERIAL_RX,
|
|
OWNER_PINDEBUG,
|
|
OWNER_TIMER,
|
|
OWNER_SONAR_TRIGGER,
|
|
OWNER_SONAR_ECHO,
|
|
OWNER_SYSTEM,
|
|
OWNER_SPI_SCK,
|
|
OWNER_SPI_MISO,
|
|
OWNER_SPI_MOSI,
|
|
OWNER_I2C_SCL,
|
|
OWNER_I2C_SDA,
|
|
OWNER_SDCARD,
|
|
OWNER_SDCARD_CS,
|
|
OWNER_SDCARD_DETECT,
|
|
OWNER_FLASH_CS,
|
|
OWNER_BARO_CS,
|
|
OWNER_MPU_CS,
|
|
OWNER_OSD_CS,
|
|
OWNER_RX_SPI_CS,
|
|
OWNER_SPI_CS,
|
|
OWNER_MPU_EXTI,
|
|
OWNER_BARO_EXTI,
|
|
OWNER_USB,
|
|
OWNER_USB_DETECT,
|
|
OWNER_BEEPER,
|
|
OWNER_OSD,
|
|
OWNER_RX_BIND,
|
|
OWNER_INVERTER,
|
|
OWNER_LED_STRIP,
|
|
OWNER_TRANSPONDER,
|
|
OWNER_VTX,
|
|
OWNER_COMPASS_CS,
|
|
OWNER_SPI_PREINIT,
|
|
OWNER_TOTAL_COUNT
|
|
} resourceOwner_e;
|
|
|
|
extern const char * const ownerNames[OWNER_TOTAL_COUNT];
|
|
|
|
#define RESOURCE_INDEX(x) (x + 1)
|
|
#define RESOURCE_SOFT_OFFSET 10
|