You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the library through the Arduino Library manager. When I try to run either of the examples I get a fatal error. Is there anything else I need to install in order to make it work?
fatal error: vector: No such file or directory
#include
^~~~~~~~
compilation terminated.
exit status 1
The text was updated successfully, but these errors were encountered:
This is a known limitation of the CSE_GNSS library for now. The library uses the C++ standard vector library for data manipulation. If you are compiling the code for any AVR boards, or other platforms that do not have the Vector library support, you will get the compilation error.
As a workaround, you can add the <ArduinoSTL.h> library to your main code. It is an implementation of the vector library for AVRs. This solution was suggested by @PedroPiko in CIRCUITSTATE/CSE_ModbusRTU#2.
Please test this and let me know if it is working for you.
I installed the library through the Arduino Library manager. When I try to run either of the examples I get a fatal error. Is there anything else I need to install in order to make it work?
fatal error: vector: No such file or directory
#include
^~~~~~~~
compilation terminated.
exit status 1
The text was updated successfully, but these errors were encountered: