X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=bed5493b499ac60984ed3d73205e36e14fe1c685;hb=192bc00a3825229287bcd17de47e38ee0d9018a9;hp=479f88eea08cd3727f86cb3afcb29038cdb491ec;hpb=90500b8c052f1ae5ac3870c509cd1f37786f7e3d;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 479f88ee..bed5493b 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -171,6 +171,9 @@ def loadModuleInfos(path): return {} def loadModuleInfosDict(path): + """ + Return the dict containig all the modules + """ moduleInfosDict = {} for filename, path in findDefinitions("*.h", path): moduleInfosDict.update(loadModuleInfos(path + "/" + filename)) @@ -192,6 +195,9 @@ def loadDefineLists(path): return listDict def loadDefineListsDict(path): + """ + Return the dict containing all the define lists + """ defineListsDict = {} for filename, path in findDefinitions("*.h", path): defineListsDict.update(loadDefineLists(path + "/" + filename))