From: Christopher Alessandro Date: Thu, 6 Jun 2019 20:17:09 +0000 (-0700) Subject: Fix PB7/PWM3 pin number X-Git-Tag: 2.0.1^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/f26df231ba8adbf88b44aac524243ae7639fcad7?ds=sidebyside Fix PB7/PWM3 pin number Pin PB7 is linux pin number 39 not 38 --- diff --git a/src/adafruit_blinka/microcontroller/sama5/pin.py b/src/adafruit_blinka/microcontroller/sama5/pin.py index 5b49669..28379ac 100644 --- a/src/adafruit_blinka/microcontroller/sama5/pin.py +++ b/src/adafruit_blinka/microcontroller/sama5/pin.py @@ -27,7 +27,7 @@ PD13 = Pin(109) PD31 = Pin(127) PB0 = Pin(32) PWM1 = PB0 -PB7 = Pin(38) +PB7 = Pin(39) PWM3 = PB7 PB1 = Pin(33) PWML1 = PB1