def SetCSIdle(self, idle): """ Sets the idle state of the chip select pin. CS idles high by default. Only appropriate when using one of the SPI modes. Set idle = 1 to idle high, idle = 0 to idle low. """ return _mpsse.SetCSIdle(self.context, idle)
def SetCSIdle(self, idle): """ Sets the idle state of the chip select pin. @idle - Set to 1 to idle high, 0 to idle low (CS idles high by default). Returns None. """ _mpsse.SetCSIdle(self.context, idle)