X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/62062074a51df0076dc4e56a0220bfbc5adafd9f..a212d2a2ebc0a709e1813d4c3633a17cb444d777:/src/adafruit_blinka/microcontroller/nova/spi.py diff --git a/src/adafruit_blinka/microcontroller/nova/spi.py b/src/adafruit_blinka/microcontroller/nova/spi.py index e03853d..72f084f 100644 --- a/src/adafruit_blinka/microcontroller/nova/spi.py +++ b/src/adafruit_blinka/microcontroller/nova/spi.py @@ -1,3 +1,6 @@ +# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries +# +# SPDX-License-Identifier: MIT """SPI Class for Binho Nova""" from adafruit_blinka.microcontroller.nova import Connection @@ -177,9 +180,9 @@ class SPI: # loop over half of resp len as we're reading 2 chars at a time to form a byte loops = int(len(resp) / 2) for j in range(loops): - buffer_in[ - (i * self.WHR_PAYLOAD_MAX_LENGTH) + in_start + j - ] = int(resp[j * 2] + resp[j * 2 + 1], 16) + buffer_in[(i * self.WHR_PAYLOAD_MAX_LENGTH) + in_start + j] = ( + int(resp[j * 2] + resp[j * 2 + 1], 16) + ) else: raise RuntimeError( "Received error response from Binho Nova, result = " + result @@ -195,9 +198,9 @@ class SPI: # loop over half of resp len as we're reading 2 chars at a time to form a byte loops = int(len(resp) / 2) for j in range(loops): - buffer_in[ - (i * self.WHR_PAYLOAD_MAX_LENGTH) + in_start + j - ] = int(resp[j * 2] + resp[j * 2 + 1], 16) + buffer_in[(i * self.WHR_PAYLOAD_MAX_LENGTH) + in_start + j] = ( + int(resp[j * 2] + resp[j * 2 + 1], 16) + ) else: raise RuntimeError( "Received error response from Binho Nova, result = " + result