Hi. I have a project where I want to be able to include "hal/app_hal.h"
from a folder called hal
, but doing so gives an error. How do I fix it?
Please use the folder structure proposed by PlatformIO. That saves you from having to do manual build flags configurations / source filters:
hal
looks like a library. So just put the hal/
folder inside lib/
and only #include <app_hal.>
.