Skip to content

Commit

Permalink
Fix line width
Browse files Browse the repository at this point in the history
  • Loading branch information
eblot committed Aug 5, 2023
1 parent 8654b6f commit 543fb4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyftdi/eeprom.py
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,8 @@ def _set_bus_control_230x(self, bus: str, control: str,

def _set_group_x232h(self, group: int, control: str, value: str,
out: Optional[TextIO]) -> None:
if self.device_version in (0x0700, 0x800, 0x3600): # 2232H/4232H/4232HA
# 2232H/4232H/4232HA
if self.device_version in (0x0700, 0x800, 0x3600):
offset = 0x0c + group//2
nibble = group & 1
else: # 232H
Expand Down

0 comments on commit 543fb4b

Please sign in to comment.