Skip to content

Commit 23a61f6

Browse files
bump
1 parent d102ff1 commit 23a61f6

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 25.6.3
2+
(hotfix patch)
3+
4+
#### Bug fixes
5+
- update Adafruit-Blinka to fix USB issue.
6+
- Fix for HardwarePWM on RPi5 on linux kernel 6.6
7+
8+
19
### 25.5.22
210

311
#### Enhancements

pioreactor/utils/pwm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self, pin: GpioPin, frequency: float = 100) -> None:
4343
import platform
4444
from pioreactor.version import rpi_version_info
4545

46-
if rpi_version_info.startswith("Raspberry Pi 5") and "6.6" in platform.platform():
46+
if rpi_version_info.startswith("Raspberry Pi 5") and "Linux-6.6" in platform.platform():
4747
# default is chip=0 for all except RPi5 on Kernel 6.6 (which is 2)
4848
super().__init__(pwm_channel, hz=frequency, chip=2)
4949
else:

pioreactor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Append ".dev0" if a dev version
88
# Append "rc0" if a rc version
99
# No zero padding!
10-
__version__ = "25.5.22"
10+
__version__ = "25.6.3"
1111

1212

1313
def get_hardware_version() -> tuple[int, int] | tuple[int, int, str]:

0 commit comments

Comments
 (0)