Lines Matching defs:str
108 pattern: str,
110 signals: Dict[str, str], argument
123 def __init__(self, signal: str, pin: int) -> None:
147 def __init__(self, name: str, pins: List[PinConfiguration]) -> None:
151 def add_signal_config(self, signal: str, config: PIN_CONFIG) -> None:
160 def set_signal_pin(self, signal: str, pin: int) -> None:
176 configs: List[DeviceConfiguration], input_file: Path, header: str
242 def board_is_nrf(content: List[str]) -> bool:
303 def fmt_states(device: str, indent: str, needs_sleep: bool) -> str:
332 def insert_pinctrl_include(content: List[str], board: str) -> None:
375 def adjust_content(content: List[str], board: str) -> List[DeviceConfiguration]:
457 config: DeviceConfiguration, signals: Dict[str, str], line: str argument
491 def process_uart(config: DeviceConfiguration, signals, line: str) -> Optional[str]:
507 def process_spi(config: DeviceConfiguration, signals, line: str) -> Optional[str]:
529 def process_pwm(config: DeviceConfiguration, signals, line: str) -> Optional[str]:
635 def main(input_file: Path, no_backup: bool, skip_nrf_check: bool, header: str) -> None: