Skip to content

Commit

Permalink
ENH: Report port when confirming device awake
Browse files Browse the repository at this point in the history
  • Loading branch information
todd committed Sep 4, 2024
1 parent 8ff3f5b commit 846edf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion psychopy_bbtk/tpad.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,9 @@ def isAwake(self):
# call FIRM (firmware version) and get response
self.sendMessage("FIRM")
resp = self.awaitResponse(multiline=True)
logging.debug(f"Connected to TPad device, which reports its firmware version as: {resp}")
logging.info(
f"TPad device on {self.portString} is awake, it reports its firmware version as: {resp}"
)

return bool(resp)

Expand Down

0 comments on commit 846edf5

Please sign in to comment.