fix spi preproc guards

This commit is contained in:
caternuson 2021-09-28 12:15:40 -07:00
parent cb21cf5979
commit a819f24d00
2 changed files with 3 additions and 4 deletions

View File

@ -1,9 +1,8 @@
#if (defined(SPI_INTERFACES_COUNT) && (SPI_INTERFACES_COUNT > 0))
#include <Adafruit_SPIDevice.h>
#include <Arduino.h>
#if !defined(SPI_INTERFACES_COUNT) || \
(defined(SPI_INTERFACES_COUNT) && (SPI_INTERFACES_COUNT > 0))
//#define DEBUG_SERIAL Serial
/*!

View File

@ -1,5 +1,5 @@
name=Adafruit BusIO
version=1.9.2
version=1.9.3
author=Adafruit
maintainer=Adafruit <info@adafruit.com>
sentence=This is a library for abstracting away UART, I2C and SPI interfacing