Skip to content

Commit aa2dbf6

Browse files
authored
Update README.md
1 parent 9bd270e commit aa2dbf6

1 file changed

Lines changed: 2 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ You can ask questions either in the discussions section of this repo, or using t
1515
* Discussions section of this git repo (available from top menu of github page).
1616
* [Arduino discussion forum](https://forum.arduino.cc/) where questions can be asked, please tag me using `@davetcc`.
1717
* [Legacy discussion forum probably to be made read only soon](https://www.thecoderscorner.com/jforum/).
18-
* https://www.thecoderscorner.com/products/arduino-libraries/simple-collections/
18+
* [Documentation on TheCodersCorner website](https://www.thecoderscorner.com/products/arduino-libraries/simple-collections/)
19+
* [Library compatibility matrix](https://www.thecoderscorner.com/products/arduino-libraries/)
1920

2021
## Installation for Arduino IDE
2122

@@ -192,21 +193,6 @@ The queue is read back as normal, but we get back a pointer.
192193

193194
In short, you should never queue an object until it is fully and atomically ready. Again, just like with circular buffers themselves, the memory pool will wrap if the writer gets too far ahead of the reader.
194195

195-
## Platforms known to work
196-
197-
The following platforms are ones that we test with, they are generally the best choices to use with this library.
198-
199-
| Platform | Board / Arch | State | Thread safety |
200-
|----------|----------------|------------------|-----------------|
201-
| Arduino | Nano 33 BLE | Examples tested | CAS |
202-
| Arduino | Uno, MEGA, AVR | Examples tested | Atomic |
203-
| Arduino | SAMD MKR1300 | Examples tested | Atomic |
204-
| Arduino | SAMD Seeed | Examples tested | Atomic |
205-
| Arduino | STM32Duino | Examples tested | CAS if possible |
206-
| Arduino | ESP8266 | Examples tested | Atomic |
207-
| Arduino | ESP32 | Examples tested | CAS |
208-
| mbed | STM32F4 | mbed example run | CAS |
209-
210196
Thread safety key:
211197

212198
* Atomic - the compare and set is implemented in software and wrapped with noInterrupts / interrupts

0 commit comments

Comments
 (0)