Because .h files are not in the default folder, when using HML_FwLib_STC89 as a library in PlatformIO project, the header files cannot be recognized automatically. This can be solved by adding a library.json according to https://docs.platformio.org/en/latest/librarymanager/config.html
I am wondering if it is feasible to add a library.json in the root path, which will bring much convenience for PlatformIO users.
The content of library.json could be
Because
.h
files are not in the default folder, when using HML_FwLib_STC89 as a library in PlatformIO project, the header files cannot be recognized automatically. This can be solved by adding alibrary.json
according to https://docs.platformio.org/en/latest/librarymanager/config.htmlI am wondering if it is feasible to add a
library.json
in the root path, which will bring much convenience for PlatformIO users.The content of
library.json
could beAnd for supressing the hint errors in VSCode editor,
linit.h
can be included in stc89.h as wellThanks,