From 84dead248401d735e44e1df3c773eb160599b888 Mon Sep 17 00:00:00 2001 From: Divya Thakur Date: Fri, 30 Aug 2024 16:56:04 -0500 Subject: [PATCH 1/2] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3a4f22..dd2a17d 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ For I2C communication, please be sure to remove all additional pull-u ## Compatibility -v2 of the library provides support for generation 8, 9 and 10 u-blox GNSS modules. For generation 6 and 7, please see [this example (depricated)](https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library/tree/master/examples/Series_6_7/Example1_GetPositionAndTime_Series_6_7). +v2 of the library provides support for generation 8, 9 and 10 u-blox GNSS modules. For generation 6 and 7, please see [this example (deprecated)](https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library/tree/master/examples/Series_6_7/Example1_GetPositionAndTime_Series_6_7). ## Contributing From aee55a7dd6a5e00f794ab561a7f882c0f17c028d Mon Sep 17 00:00:00 2001 From: dizcza Date: Thu, 20 Feb 2025 18:13:44 +0200 Subject: [PATCH 2/2] Added a cmake file to support Arduino as a component in ESP-IDF --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..325e2cf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +file(GLOB SOURCES src/*.cpp) +idf_component_register( + SRCS ${SOURCES} + INCLUDE_DIRS src + REQUIRES arduino +)