From 7b5f57f8c7271b0313b132c1e4106a71e910598c Mon Sep 17 00:00:00 2001 From: Bogdan Popescu <68062990+bopopescu@users.noreply.github.com> Date: Fri, 24 Jul 2020 16:16:56 +0300 Subject: [PATCH] Removal of master/slave lingo --- scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py b/scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py index abb358c3..b1e6d16d 100644 --- a/scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py +++ b/scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py @@ -50,7 +50,7 @@ def set_byte(self, i2caddr, addr, value): def command(self, i2caddr, cmd): - """ Writes one byte command to slave """ + """ Writes one byte command to subordinate """ self.send_start_bit(); stat = self.bulk_trans(2, [i2caddr<<1, cmd]); self.send_stop_bit();