ArduinoSTL icon indicating copy to clipboard operation
ArduinoSTL copied to clipboard

An STL and iostream implementation based on uClibc++ that supports my CS-11M class.

Results 29 ArduinoSTL issues
Sort by recently updated
recently updated
newest added

allow use of F() macro for strings: cout

When compiling the following sketch, ```cpp #include void setup() {} void loop() {} ``` this error is raised: ```txt arduino-cli compile --fqbn arduino:avr:pro --warnings all --output-dir build \ --build-property compiler.cpp.extra_flags="-pedantic"...

I see some references to this that are quite old. It seemed to say this was fixed. But I just upgraded top the latest of Arduino and the IDE and...

This fixes remaining issues with new/delete conflicts between this library and the AVR core by simply omitting all new-related stuff from this library when the AVR core provides it. For...

The implementation was incorrect (returning T& instead of T&&). Until a working version is provided (which requires additional work), it would be better to not provide it at all. Users...

I tested that this compiles for Arduino UNO, including vectors with integral and non-integral types.

std::array test={ 1 }; should fill element 1 to 4 with 0; In other library the member data element is public to allow compiler to fill it directly. Use same...

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.1.0. Release notes Sourced from actions/upload-artifact's releases. v3.1.0 What's Changed Bump @​actions/artifact to v1.1.0 (actions/upload-artifact#327) Adds checksum headers on artifact upload (actions/toolkit#1095) (actions/toolkit#1063) v3.0.0 What's...

topic: infrastructure

![image](https://user-images.githubusercontent.com/92435757/169530735-011736de-1752-4788-9c3e-a0606d20e1df.png)

hello i would like first to thank you for the great work. i would like to use the following code, but i guess the functional header doesnt have the function...