The previous included version (1.0.10) was failing to read more than 32 bytes of data from I2C devices (tested on AMG8833 which typically reads 128 bytes -whose support is in progress-). The problem was fixed in version 1.9.0. Currently, this library is required and used just by the Adafruit_VEML7700 library. The VEML7700 sensor has been tested and proved to correctly work. Signed-off-by: Roberto Bonacina <roby.bonacina@tutanota.com>
12 lines
349 B
CMake
12 lines
349 B
CMake
# Adafruit Bus IO Library
|
|
# https://github.com/adafruit/Adafruit_BusIO
|
|
# MIT License
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
idf_component_register(SRCS "Adafruit_I2CDevice.cpp" "Adafruit_BusIO_Register.cpp" "Adafruit_SPIDevice.cpp"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES arduino)
|
|
|
|
project(Adafruit_BusIO)
|