MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / read_port_byte

Method read_port_byte

Python-Bridge/Python-Bridge.py:83–86  ·  view source on GitHub ↗
(self, port_number)

Source from the content-addressed store, hash-verified

81 self.__kb = kb
82
83 def read_port_byte(self, port_number):
84 value = c_byte()
85 status = self.__kb.KbReadPortByte(c_ushort(port_number), byref(value))
86 return status, value
87
88 def read_port_word(self, port_number):
89 value = c_ushort()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected