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
{{ message }}
This repository has been archived by the owner on Jul 4, 2021. It is now read-only.
Apologies for raising this as an issue, rather than suggesting a PR, but I am not a C++ developer, so this could be my misconfiguration as much as anything. However, after following the instructions (including setting up libusb), I was getting errors stating that string was not part of std.
With a quick search, I added #include <string> to AntStick.h and everything compiled.
Great work by the way. Any desires to evolve this project further? I am going to attempt something myself, but if you would like to collaborate, that would be great.
The text was updated successfully, but these errors were encountered:
This is probably a real issue, as C++ compilers and standard libraries would sometimes include additional headers, so, for example, in some versions of the compiler you can use std::string by including some some unrelated headers.
Its been now three years since I wrote this proof-of-concept application and, while I always wanted to finish it and make it a real trainer application, I never had the time. I still plan to pick up the work, but it definitely won't be in the next few months. If you plan to work on something similar, I suggest to fork this project and use as much or as little as you need from it. When I get to work on this project again, I will look at what you have done...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Apologies for raising this as an issue, rather than suggesting a PR, but I am not a C++ developer, so this could be my misconfiguration as much as anything. However, after following the instructions (including setting up libusb), I was getting errors stating that
string
was not part ofstd
.With a quick search, I added
#include <string>
toAntStick.h
and everything compiled.Great work by the way. Any desires to evolve this project further? I am going to attempt something myself, but if you would like to collaborate, that would be great.
The text was updated successfully, but these errors were encountered: