Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect include paths in the file 'vscp_evt_information.c' (compile error) #10

Closed
michpro opened this issue Oct 30, 2024 · 1 comment
Labels
Milestone

Comments

@michpro
Copy link

michpro commented Oct 30, 2024

In the file 'vscp_evt_information.c' is:

#include "vscp_evt_information.h"
#include "vscp_core.h"
#include "vscp_class_l1.h"
#include "vscp_type_information.h"

, and should be:

#include "vscp_evt_information.h"
#include "../core/vscp_core.h"
#include "../core/vscp_class_l1.h"
#include "../core/vscp_type_information.h"
BlueAndi added a commit that referenced this issue Oct 30, 2024
@BlueAndi BlueAndi added this to the v2.0.4 milestone Oct 31, 2024
@BlueAndi BlueAndi added the bug label Oct 31, 2024
@BlueAndi BlueAndi mentioned this issue Oct 31, 2024
@BlueAndi
Copy link
Owner

Thanks, I missed that somehow. The problem is always that changes from vscp-framework needs additional changes for Arduino, because they still doesn't support to set include search path. Now I added a CI workflow, which should help next time. :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants