2022-11-29 05:46:28 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-11-30 20:39:43 -04:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2022-11-29 05:46:28 -04:00
|
|
|
|
2024-03-07 03:52:59 -04:00
|
|
|
#ifndef AP_SRV_CHANNELS_ENABLED
|
|
|
|
#define AP_SRV_CHANNELS_ENABLED 1
|
|
|
|
#endif
|
|
|
|
|
2022-11-29 05:46:28 -04:00
|
|
|
#ifndef NUM_SERVO_CHANNELS
|
2022-11-30 20:36:11 -04:00
|
|
|
#if BOARD_FLASH_SIZE > 1024
|
2022-11-29 05:46:28 -04:00
|
|
|
#define NUM_SERVO_CHANNELS 32
|
|
|
|
#else
|
|
|
|
#define NUM_SERVO_CHANNELS 16
|
|
|
|
#endif
|
|
|
|
#endif
|