123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- """Python bindings for PD Buddy Sink configuration"""
-
- from enum import *
-
- import serial
- import serial.tools.list_ports
-
-
- class Sink:
- """Interface for configuring a PD Buddy Sink"""
- vid = 0x1209
- pid = 0x0001
-
- def __init__(self, sp):
- """Open the serial port to communicate with the PD Buddy Sink
-
- Parameters:
- sp: A serial.tools.list_ports.ListPortInfo object
- """
- self.port = serial.Serial(sp.device, baudrate=115200)
-
- def send_command(self, cmd):
- """Send a command to the PD Buddy Sink, returning the result
-
- Parameters:
- cmd: A string containing the text to send to the Sink
-
- Returns:
- A list of zero or more bytes objects, each being one line printed
- as a response to the command.
- """
- # Send the command
- self.port.write(bytes(cmd, "utf-8") + b"\r\n")
- self.port.flush()
-
- # Read the result
- answer = b""
- while not answer.endswith(b"PDBS) "):
- answer += self.port.read(1)
- answer = answer.split(b"\r\n")
-
- # Remove the echoed command and prompt
- answer = answer[1:-1]
- return answer
-
- def help(self):
- """Returns the help text from the PD Buddy Sink"""
- return self.send_command("help")
-
- def license(self):
- """Returns the license text from the PD Buddy Sink"""
- return self.send_command("license")
-
- def erase(self):
- """Synchronously erases all stored configuration from flash"""
- self.send_command("erase")
-
- def write(self):
- """Synchronously writes the contents of the configuration buffer to flash"""
- self.send_command("write")
-
- def load(self):
- """Loads the current configuration from flash into the buffer
-
- Raises KeyError if there is no configuration in flash.
- """
- text = self.send_command("load")
- if len(text) > 0 and text[0].startswith(b"No configuration"):
- raise KeyError("no configuration")
-
- def get_cfg(self, index=None):
- """Reads configuration from flash
-
- Parameters:
- index: Optional index of configuration object in flash to read
-
- Returns:
- A SinkConfig object
- """
- if index is None:
- cfg = self.send_command("get_cfg")
- else:
- cfg = self.send_command("get_cfg {}".format(index))
-
- return SinkConfig.from_text(cfg)
-
- def get_tmpcfg(self):
- """Reads the contents of the configuration buffer
-
- Returns:
- A SinkConfig object
- """
- cfg = self.send_command("get_tmpcfg")
-
- return SinkConfig.from_text(cfg)
-
- def clear_flags(self):
- """Clears all the flags in the configuration buffer"""
- self.send_command("clear_flags")
-
- def toggle_giveback(self):
- """Toggles the GiveBack flag in the configuration buffer"""
- self.send_command("toggle_giveback")
-
- def set_v(self, mv):
- """Sets the voltage of the configuration buffer, in millivolts"""
- self.send_command("set_v {}".format(mv))
-
- def set_i(self, ma):
- """Sets the current of the configuration buffer, in milliamperes"""
- self.send_command("set_i {}".format(ma))
-
- def identify(self):
- """Blinks the LED quickly"""
- self.send_command("identify")
-
- def set_tmpcfg(self, sc):
- """Writes a SinkConfig object to the device's configuration buffer
-
- Note: the value of the status field is ignored; it will always be
- SinkStatus.VALID.
- """
- # Set flags
- self.clear_flags()
- if sc.flags & SinkFlags.GIVEBACK:
- self.toggle_giveback()
-
- # Set voltage
- self.set_v(sc.v)
-
- # Set current
- self.set_i(sc.i)
-
- @classmethod
- def get_devices(cls):
- """Get an iterable of PD Buddy Sink devices
-
- Returns an iterable of serial.tools.list_ports.ListPortInfo objects.
- """
- return serial.tools.list_ports.grep("{:04X}:{:04X}".format(cls.vid,
- cls.pid))
-
-
- class SinkConfig:
- """Python representation of a PD Buddy Sink configuration object"""
-
- def __init__(self, status=None, flags=None, v=None, i=None):
- """Create a SinkConfig object
-
- Parameters:
- status: A SinkStatus value
- flags: Zero or more SinkFlags values
- v: Voltage in millivolts
- i: Current in milliamperes
- """
- self.status = status
- self.flags = flags
- self.v = v
- self.i = i
-
- def __repr__(self):
- s = type(self).__name__ + "("
-
- if self.status is not None:
- s += "status={}".format(self.status)
-
- if self.flags is not None:
- if not s.endswith("("):
- s += ", "
- s += "flags={}".format(self.flags)
-
- if self.v is not None:
- if not s.endswith("("):
- s += ", "
- s += "v={}".format(self.v)
-
- if self.i is not None:
- if not s.endswith("("):
- s += ", "
- s += "i={}".format(self.i)
-
- s += ")"
-
- return s
-
- def __str__(self):
- """Print the SinkStatus in the manner of the configuration shell"""
- s = ""
-
- if self.status is not None:
- s += "status: "
- if self.status is SinkStatus.EMPTY:
- s += "empty"
- elif self.status is SinkStatus.VALID:
- s += "valid"
- elif self.status is SinkStatus.INVALID:
- s += "invalid"
- s += "\n"
-
- if self.flags is not None:
- s += "flags: "
- if self.flags is SinkFlags.NONE:
- s += "(none)"
- else:
- if self.flags & SinkFlags.GIVEBACK:
- s += "GiveBack"
- s += "\n"
-
- if self.v is not None:
- s += "v: {:.2f} V\n".format(self.v / 1000)
-
- if self.i is not None:
- s += "i: {:.2f} A\n".format(self.i / 1000)
-
- # Return all but the last character of s to remove the trailing newline
- return s[:-1]
-
- def __eq__(self, other):
- if isinstance(other, self.__class__):
- if other.status is not self.status:
- return False
- if other.flags is not self.flags:
- return False
- if other.v != self.v:
- return False
- if other.i != self.i:
- return False
- return True
- return NotImplemented
-
- def __ne__(self, other):
- if isinstance(other, self.__class__):
- return not self.__eq__(other)
- return NotImplemented
-
- def __hash__(self):
- return hash(tuple(sorted(self.__dict__.items())))
-
- @classmethod
- def from_text(cls, text):
- """Creates a SinkConfig from text returned by Sink.send_command
-
- Returns a new SinkConfig object.
-
- Raises IndexError if the configuration reads "Invalid index".
- """
- # Assume the parameters will all be None
- status = None
- flags = None
- v = None
- i = None
-
- # Iterate over all lines of text
- for line in text:
- # If the configuration said invalid index, raise an IndexError
- if line.startswith(b"Invalid index"):
- raise IndexError("configuration index out of range")
- # If there is no configuration, return an empty SinkConfig
- elif line.startswith(b"No configuration"):
- return cls()
- # If this line is the status field
- elif line.startswith(b"status: "):
- line = line.split()[1:]
- if line[0] == b"empty":
- status = SinkStatus.EMPTY
- elif line[0] == b"valid":
- status = SinkStatus.VALID
- elif line[0] == b"invalid":
- status = SinkStatus.INVALID
- # If this line is the flags field
- elif line.startswith(b"flags: "):
- line = line.split()[1:]
- flags = SinkFlags.NONE
- for word in line:
- if word == b"(none)":
- # If there are no flags set, stop looking
- break
- elif word == b"GiveBack":
- flags |= SinkFlags.GIVEBACK
- # If this line is the v field
- elif line.startswith(b"v: "):
- word = line.split()[1]
- v = round(1000*float(word))
- # If this line is the i field
- elif line.startswith(b"i: "):
- word = line.split()[1]
- i = round(1000*float(word))
-
- # Create a new SinkConfig object with the values we just read
- return cls(status=status, flags=flags, v=v, i=i)
-
-
- class SinkStatus(Enum):
- """Status field of a PD Buddy Sink configuration object"""
- EMPTY = 1
- VALID = 2
- INVALID = 3
-
-
- class SinkFlags(Flag):
- """Flags field of a PD Buddy Sink configuration object"""
- NONE = 0
- GIVEBACK = auto()
|