Mbed sutdio cannot see function in header file

Hallo ,
I was working in project on eclipse but now I need migrate to Mbed studio

the first problem I faced with mbed studio that it can not see function in header file although the header file is included and every thing was run perfect on eclipse without any problem . so can you please help me in that to move forward
Thanks

Hi there,

there is probably a collision between 2 files with same name so you can rename the file name to a unique one or try to add the include with full path to .h file like this

#include "source/control/configm/config.h"

or shorter version

#include "configm/config.h"

BR, Jan

1 Like

thank you #include “configm/config.h” solved the problem …