1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Corrections - too many initialisers, and ADC

This commit is contained in:
blckmn 2016-11-10 20:34:00 +11:00
parent 58105c25ac
commit 953c8da179
6 changed files with 65 additions and 22 deletions

View file

@ -3,7 +3,7 @@
*
* 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
* 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,
@ -12,24 +12,51 @@
* 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/>.
* along with Cleanflight. If not,see <http://www.gnu.org/licenses/>.
*/
#include "resource.h"
const char * const ownerNames[OWNER_TOTAL_COUNT] = {
"FREE", "PWM", "PPM", "MOTOR", "SERVO", "LED",
"ADC", "ADC_BATT", "ADC_CURR", "ADC_EXT", "ADC_RSSI",
"SERIAL_TX", "SERIAL_RX",
"DEBUG", "TIMER",
"SONAR_TRIGGER", "SONAR_ECHO",
"SYSTEM",
"SPI_SCK", "SPI_MISO", "SPI_MOSI",
"I2C_SDA", "I2C_SCL",
"SDCARD_CS", "FLASH_CS", "BARO_CS", "MPU_CS", "OSD_CS", "RX_SPI_CS", "SPI_CS",
"MPU_EXTI", "BARO_EXTI",
"USB", "USB_DETECT", "BEEPER", "OSD", "SDCARD_DETECT",
"FREE",
"PWM",
"PPM",
"MOTOR",
"SERVO",
"LED",
"ADC",
"ADC_BATT",
"ADC_CURR",
"ADC_EXT",
"ADC_RSSI",
"SERIAL_TX",
"SERIAL_RX",
"DEBUG",
"TIMER",
"SONAR_TRIGGER",
"SONAR_ECHO",
"SYSTEM",
"SPI_SCK",
"SPI_MISO",
"SPI_MOSI",
"I2C_SDA",
"I2C_SCL",
"SDCARD_CS",
"FLASH_CS",
"BARO_CS",
"MPU_CS",
"OSD_CS",
"RX_SPI_CS",
"SPI_CS",
"MPU_EXTI",
"BARO_EXTI",
"USB",
"USB_DETECT",
"BEEPER",
"OSD",
"SDCARD_DETECT",
"RX_BIND",
"INVERTER", "LED_STRIP",
"INVERTER",
"LED_STRIP",
};