Skip to main content

ato-version

The compiler version with which the project was developed. This is used by the compiler to ensure the code in this project is compatible with the compiler version. Default value: current compiler version Type: str Example usage:
ato.yaml

paths.src

Project source code directory Default value: elec/src Type: str Example usage:
ato.yaml

paths.layout

Project layout directory where KiCAD projects are stored and searched for Default value: elec/layout Type: str Example usage:
ato.yaml

dependencies

List of dependencies for the project Default value: [] or no dependencies Type: Example usage:
ato.yaml

builds

Build targets for the project Default value: {} or no build targets Type: dict (see “builds.name” etc… below for details)

builds.entry

Entry point for the build Default value: Required, no default Type: str Example usage:
ato.yaml

builds.targets

Build targets for the project Default value: ["__default__"], which is a special value. Type: list[str] Example usage:
ato.yaml

builds.exclude_targets

Excluding the mfg-data target is useful, for example, for CI build targets that represent a module, but not a board you’d manufacture. Default value: [], don’t actively exclude any targets Type: list[str] Example usage:
ato.yaml

builds.exclude_checks

A list of checks to exclude. Use qualified name of check e.g
  • PCB.requires_drc_check
  • I2C.requires_unique_addresses
  • requires_external_usage
Default value: [], don’t actively exclude any targets Type: list[str] Example usage:
ato.yaml

builds.hide_designators

Hide all the designators from the built PCB. Default value: false Type: bool Example usage:
ato.yaml