yambs.config.board
index
/home/vkottler/src/vkottler/workspace/yambs/yambs/config/board.py

A data structure describing a board target.

 
Classes
       
builtins.tuple(builtins.object)
Architecture
Board
Chip

 
class Architecture(builtins.tuple)
    Architecture(name: str, toolchain: str, extra_cflags: List[str])
 
An instruction-set architecture.
 
 
Method resolution order:
Architecture
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new Architecture object replacing specified fields with new values

Class methods defined here:
_make(iterable) from builtins.type
Make a new Architecture object from a sequence or iterable

Static methods defined here:
__new__(_cls, name: str, toolchain: str, extra_cflags: List[str])
Create new instance of Architecture(name, toolchain, extra_cflags)
from_dict(name: str, data: Dict[str, Any]) -> 'Architecture'
Get an architecture from dictionary data.

Data descriptors defined here:
name
Alias for field number 0
toolchain
Alias for field number 1
extra_cflags
Alias for field number 2

Data and other attributes defined here:
__annotations__ = {'extra_cflags': typing.List[str], 'name': <class 'str'>, 'toolchain': <class 'str'>}
__match_args__ = ('name', 'toolchain', 'extra_cflags')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('name', 'toolchain', 'extra_cflags')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__hash__(self, /)
Return hash(self).
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585

 
class Board(builtins.tuple)
    Board(name: str, chip: yambs.config.board.Chip, extra_cflags: List[str], targets: List[str], extra_dirs: List[str], apps: Dict[str, pathlib.Path])
 
A class representing a board's attributes.
 
 
Method resolution order:
Board
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__hash__(self) -> int
Get a hashing method for this instance.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new Board object replacing specified fields with new values

Class methods defined here:
_make(iterable) from builtins.type
Make a new Board object from a sequence or iterable

Static methods defined here:
__new__(_cls, name: str, chip: yambs.config.board.Chip, extra_cflags: List[str], targets: List[str], extra_dirs: List[str], apps: Dict[str, pathlib.Path])
Create new instance of Board(name, chip, extra_cflags, targets, extra_dirs, apps)
from_dict(data: Dict[str, Any], architectures: Dict[str, Any], chips: Dict[str, Any]) -> 'Board'
Get a board from dictionary data.

Readonly properties defined here:
build
Get a buld directory based on this board.

Data descriptors defined here:
name
Alias for field number 0
chip
Alias for field number 1
extra_cflags
Alias for field number 2
targets
Alias for field number 3
extra_dirs
Alias for field number 4
apps
Alias for field number 5

Data and other attributes defined here:
__annotations__ = {'apps': typing.Dict[str, pathlib.Path], 'chip': <class 'yambs.config.board.Chip'>, 'extra_cflags': typing.List[str], 'extra_dirs': typing.List[str], 'name': <class 'str'>, 'targets': typing.List[str]}
__match_args__ = ('name', 'chip', 'extra_cflags', 'targets', 'extra_dirs', 'apps')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('name', 'chip', 'extra_cflags', 'targets', 'extra_dirs', 'apps')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585

 
class Chip(builtins.tuple)
    Chip(name: str, architecture: yambs.config.board.Architecture, cpu: str, extra_cflags: List[str], jlink: List[str])
 
A microcontroller integrated circuit.
 
 
Method resolution order:
Chip
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new Chip object replacing specified fields with new values

Class methods defined here:
_make(iterable) from builtins.type
Make a new Chip object from a sequence or iterable

Static methods defined here:
__new__(_cls, name: str, architecture: yambs.config.board.Architecture, cpu: str, extra_cflags: List[str], jlink: List[str])
Create new instance of Chip(name, architecture, cpu, extra_cflags, jlink)
from_dict(name: str, data: Dict[str, Any], architectures: Dict[str, Any]) -> 'Chip'
Get a chip from dictionary data.

Data descriptors defined here:
name
Alias for field number 0
architecture
Alias for field number 1
cpu
Alias for field number 2
extra_cflags
Alias for field number 3
jlink
Alias for field number 4

Data and other attributes defined here:
__annotations__ = {'architecture': <class 'yambs.config.board.Architecture'>, 'cpu': <class 'str'>, 'extra_cflags': typing.List[str], 'jlink': typing.List[str], 'name': <class 'str'>}
__match_args__ = ('name', 'architecture', 'cpu', 'extra_cflags', 'jlink')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('name', 'architecture', 'cpu', 'extra_cflags', 'jlink')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__hash__(self, /)
Return hash(self).
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585

 
Data
        Dict = typing.Dict
List = typing.List