mirror of https://github.com/ArduPilot/ardupilot
AP_Scripting: increase default heap size
we will need a better fix than this. Adding a couple of bindings costs us nearly 1k of ram even if unused
This commit is contained in:
parent
4c0e3dcf72
commit
c356389b4b
|
@ -61,7 +61,7 @@ const AP_Param::GroupInfo AP_Scripting::var_info[] = {
|
||||||
// @Increment: 1024
|
// @Increment: 1024
|
||||||
// @User: Advanced
|
// @User: Advanced
|
||||||
// @RebootRequired: True
|
// @RebootRequired: True
|
||||||
AP_GROUPINFO("HEAP_SIZE", 3, AP_Scripting, _script_heap_size, 41*1024),
|
AP_GROUPINFO("HEAP_SIZE", 3, AP_Scripting, _script_heap_size, 42*1024),
|
||||||
|
|
||||||
AP_GROUPINFO("DEBUG_LVL", 4, AP_Scripting, _debug_level, 1),
|
AP_GROUPINFO("DEBUG_LVL", 4, AP_Scripting, _debug_level, 1),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue