mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-01 03:04:04 -04:00
We will reserve BOARD_FLASH_SIZE for the internal flash on stm32 flash processors, use HAL_PROGRAM_SIZE_LIMIT_KB in the general code base. Notable change here is that boards with external flash will start to get features only available with more than 2MB of program storage
16 lines
295 B
C
16 lines
295 B
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
#ifndef AP_SRV_CHANNELS_ENABLED
|
|
#define AP_SRV_CHANNELS_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef NUM_SERVO_CHANNELS
|
|
#if HAL_PROGRAM_SIZE_LIMIT_KB > 1024
|
|
#define NUM_SERVO_CHANNELS 32
|
|
#else
|
|
#define NUM_SERVO_CHANNELS 16
|
|
#endif
|
|
#endif
|