mirror of https://github.com/ArduPilot/ardupilot
AP_Param: save 7k flash for HAL_MINIMIZE_FEATURES boards
This commit is contained in:
parent
152205fd52
commit
aa3642d9de
|
@ -39,7 +39,11 @@
|
|||
maximum size of embedded parameter file
|
||||
*/
|
||||
#ifndef AP_PARAM_MAX_EMBEDDED_PARAM
|
||||
#define AP_PARAM_MAX_EMBEDDED_PARAM 8192
|
||||
#if HAL_MINIMIZE_FEATURES
|
||||
# define AP_PARAM_MAX_EMBEDDED_PARAM 1024
|
||||
#else
|
||||
# define AP_PARAM_MAX_EMBEDDED_PARAM 8192
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue