1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

OOM debug option: simplify its management and make it compatible with arduino-1.9beta (#4357)

This commit is contained in:
david gauchard
2018-03-16 19:56:32 +01:00
committed by GitHub
parent edd2754e2f
commit 732e22ec37
3 changed files with 75 additions and 86 deletions

View File

@ -934,9 +934,8 @@ def comb1 (lst):
def all_debug ():
listcomb = [ 'SSL', 'TLS_MEM', 'HTTP_CLIENT', 'HTTP_SERVER' ]
listnocomb = [ 'CORE', 'WIFI', 'HTTP_UPDATE', 'UPDATER', 'OTA' ]
listnocomb = [ 'CORE', 'WIFI', 'HTTP_UPDATE', 'UPDATER', 'OTA', 'OOM' ]
listsingle = [ 'NoAssert-NDEBUG' ]
listnocomb += [ 'OOM -include "umm_malloc/umm_malloc_cfg.h"' ]
options = combn(listcomb)
options += comb1(listnocomb)
options += [ listcomb + listnocomb ]