forked from platformio/platformio-core
Minor change to BoardConfig() API
This commit is contained in:
@ -494,16 +494,20 @@ class PlatformBoardConfig(object):
|
||||
return False
|
||||
|
||||
@property
|
||||
def id_(self):
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def id_(self):
|
||||
return self.id
|
||||
|
||||
@property
|
||||
def manifest(self):
|
||||
return self._manifest
|
||||
|
||||
def get_brief_data(self):
|
||||
return {
|
||||
"id": self.id_,
|
||||
"id": self.id,
|
||||
"name": self._manifest['name'],
|
||||
"platform": self._manifest.get("platform"),
|
||||
"mcu": self._manifest.get("build", {}).get("mcu", "").upper(),
|
||||
|
Reference in New Issue
Block a user