Lines Matching full:group
63 self._name += f"_PIO{match.group(1)}_{match.group(2)}"
64 port = int(match.group(1))
65 pin = int(match.group(2))
226 self._port = int(pin_regex.group(1))
227 self._pin = int(pin_regex.group(2))
354 Internal class representing pin group
358 Creates a pin group
371 # group pins based on shared configuration
386 # Do not add pinmux option to group
413 return true if two objects have the same pin group name
440 Get description of the pin group, if present. If no description present,
447 Get pin group name
721 group = PinGroup(function, self._pins, self._imx_rt)
722 pin_groups[group.get_name()] = group
752 for group in pin_groups.values():
753 pin_props = group.get_pin_props()
754 description = group.get_description()
765 logging.info("Writing pin group %s to disk", group.get_name())
766 file.write(f"\t{group.get_name().lower()}: {group.get_name().lower()} {{\n")
772 for pin in group.get_pins(pin_prop):