From f29cf01b6e8603422f3668d51036ac124f803404 Mon Sep 17 00:00:00 2001 From: Roberto Lo Giacco Date: Wed, 8 Feb 2023 09:07:33 +0100 Subject: [PATCH] adds warning for library inclusion fixes #73 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 0acc8d3..2707098 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,13 @@ CircularBuffer pointers; // uses 638 bytes **Please note**: the memory usage reported above includes the program memory used by the library code, the heap memory is much less and is comparable to an array of the same size and type of the buffer. +### ⚠ **IMPORTANT** +If you are strugglying to have your toolchain pick up the library (issues reported on Arduino Mbed and Nano33 BLE boards, but might apply to others as well) try specifying the exact path to your library, like in the following example: + +``` cpp +#include +``` + ### Store data Let's start making things clear: the library doesn't support inserting data in the middle of the buffer.