X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/8072ee88e2c51c62815934066dbd6de838fc913c..18bc57adc610625742d7be9bc3422d02615d6d4f:/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py diff --git a/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py b/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py index 5f72e4f..6cf477c 100644 --- a/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py +++ b/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py @@ -85,6 +85,9 @@ class PWMOut: if self._channel is None: raise RuntimeError("No PWM channel found for this Pin") + if variable_frequency: + print("Variable Frequency is not supported, continuing without it...") + channel_path = os.path.join( self._sysfs_path, self._channel_path.format(self._channel) ) @@ -93,7 +96,6 @@ class PWMOut: "PWM channel does not exist, check that the required modules are loaded." ) - pin_path = os.path.join(channel_path, self._pin_path.format(self._pwmpin)) try: with open( os.path.join(channel_path, self._unexport_path), "w"