mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 07:28:29 -04:00
cd76aa3cff
Adding of SRV_Channel_config allows defining the number of servo channels for inclusion in other libraries without pulling in all the other SRV_Channel logic. Co-authored-by: Simon Maddison <81274690+Sypaq-MadMan@users.noreply.github.com>
18 lines
416 B
C
18 lines
416 B
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#ifndef NUM_SERVO_CHANNELS
|
|
#if defined(HAL_BUILD_AP_PERIPH) && defined(HAL_PWM_COUNT)
|
|
#define NUM_SERVO_CHANNELS HAL_PWM_COUNT
|
|
#elif defined(HAL_BUILD_AP_PERIPH)
|
|
#define NUM_SERVO_CHANNELS 0
|
|
#else
|
|
#if !HAL_MINIMIZE_FEATURES && BOARD_FLASH_SIZE > 1024
|
|
#define NUM_SERVO_CHANNELS 32
|
|
#else
|
|
#define NUM_SERVO_CHANNELS 16
|
|
#endif
|
|
#endif
|
|
#endif
|