You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: megaavr/extras/Errata.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,8 +51,8 @@ Errata apply to a specific die. But the same die may be used on multiple parts,
51
51
* all 16k - This is clearly what was used for development - it's at rev E!
52
52
* all 32k
53
53
54
-
## The grand combined table, now on google sheets
55
-
[**The table is now in Google Sheets and publicly viewable - color coded too!**](https://docs.google.com/spreadsheets/d/1N-dDZ3WogEXRYcOip5kOREj_ExPQQRD1OrgMuywjXzw/edit?usp=sharing)
54
+
## The grand combined table, now on Google Sheets
55
+
[**The table is now in Google Sheets and publicly viewable - color coded too!**](https://docs.google.com/spreadsheets/d/1vRSt0s7Kpi_VehmFYBX8__OBbs7hbN87KwTNzwDcE2o/edit?usp=sharing)
Copy file name to clipboardExpand all lines: megaavr/libraries/SPI/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# SPI for megaTinyCore
2
-
The SPI library implements all of the standard functionality described in the [Arduino SPI library reference](https://docs.arduino.cc/language-reference/en/functions/communication/spi/)- with the exception of the specific pins, of course!). Also, like all of the "big three" third-party cores for post-2016 AVR devices, this version of SPI.h supports the `swap()` and `pins()` methods to make use of the PORTMUX feature of the chips. Aside from those extensions, and a few changes to rarelty used, ill-conceived methods relating to interrupts, and unimplemented methods (likely intended for slave mode which was never implemented, for reasons discussed below), it behaves in the same way as the official one.
2
+
The SPI library implements all of the standard functionality described in the [Arduino SPI library reference](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/)applies here. With the exceptionific pins, of course!). Also, like all of the "big three" third-party cores for post-2016 AVR devices, this version of SPI.h supports the `swap()` and `pins()` methods to make use of the PORTMUX feature of the chips. Aside from those extensions, and a few changes to rarelty used, ill-conceived methods relating to interrupts, and unimplemented methods (likely intended for slave mode which was never implemented, for reasons discussed below), it behaves in the same way as the official one.
if (device_name.find('avr') !=-1and ((device_name.find('da') !=-1) or (device_name.find('db') !=-1) or (device_name.find('dd') !=-1))):
66
+
if (device_name.find('avr') !=-1and ((device_name.find('da') !=-1) or (device_name.find('db') !=-1) or (device_name.find('dd') !=-1)or (device_name.find('du') !=-1))):
0 commit comments