Skip to content

Commit

Permalink
Fixed incorrect c_type
Browse files Browse the repository at this point in the history
Fixes #1 (thanks @Jordi-aguilar)
  • Loading branch information
ravngr committed Nov 30, 2023
1 parent 642d834 commit e68fc62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ authors:
given-names: Mahnaz
orcid: https://orcid.org/0000-0002-3520-1553
title: "pylinkam"
version: 1.2.3
version: 1.2.4
doi: 10.5281/zenodo.6758012
date-released: 2022-06-27
2 changes: 1 addition & 1 deletion pylinkam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__app_name__ = 'pylinkam'
__version__ = '1.2.3'
__version__ = '1.2.4'

__author__ = 'Chris Harrison'
__credits__ = [__author__]
Expand Down
2 changes: 1 addition & 1 deletion pylinkam/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class ControllerConfig(ctypes.Union):


class ControllerProgramStatusFlags(ctypes.Structure):
_fields_ = [(x, ctypes.c_uint64, 1) for x in [
_fields_ = [(x, ctypes.c_uint32, 1) for x in [
'dirn',
'hold',
'heat',
Expand Down

0 comments on commit e68fc62

Please sign in to comment.