This commit is contained in:
BlitzCityDIY 2025-03-19 11:49:08 -04:00
parent 15d5317a3d
commit 67cc08310d
2 changed files with 3 additions and 3 deletions

View file

@ -1376,7 +1376,7 @@ class TLV320DAC3100:
self._page1._configure_spk_pga(gain, not mute) self._page1._configure_spk_pga(gain, not mute)
@property @property
def dac_flags(self) -> DACFlags: def dac_flags(self) -> Dict[str, Any]:
"""Get the DAC and output driver status flags. """Get the DAC and output driver status flags.
:return: Dictionary with status flags :return: Dictionary with status flags
@ -1425,7 +1425,7 @@ class TLV320DAC3100:
return self._page0._get_din_input() return self._page0._get_din_input()
@property @property
def codec_interface(self) -> CodecInterface: def codec_interface(self) -> Dict[str, Any]:
"""Get the current codec interface settings. """Get the current codec interface settings.
:return: Dictionary with codec interface settings :return: Dictionary with codec interface settings

View file

@ -25,7 +25,7 @@ extensions = [
# Uncomment the below if you use native CircuitPython modules such as # Uncomment the below if you use native CircuitPython modules such as
# digitalio, micropython and busio. List the modules you use. Without it, the # digitalio, micropython and busio. List the modules you use. Without it, the
# autodoc module docs will fail to generate with a warning. # autodoc module docs will fail to generate with a warning.
# autodoc_mock_imports = ["digitalio", "busio"] autodoc_mock_imports = ["digitalio", "busio", "adafruit_bus_device", "micropython"]
autodoc_preserve_defaults = True autodoc_preserve_defaults = True