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
In the hardware_arduino package, all the header files are included awkwardly, that is they are of the form:
#include "../include/Motor.h"
Instead of that, it should be #include "Motor.h". One way to resolve that is linking libraries and specifying the rules in the CMakeLists properly. It is open to other suggestions.
The text was updated successfully, but these errors were encountered:
In the
hardware_arduino
package, all the header files are included awkwardly, that is they are of the form:Instead of that, it should be
#include "Motor.h"
. One way to resolve that is linking libraries and specifying the rules in theCMakeLists
properly. It is open to other suggestions.The text was updated successfully, but these errors were encountered: