2024-04-20 01:11 AM
I am learning stm32f407ve, And I am facing problem in building the project.
GPIO_Init( ) and GPIO_ReadFromInputPin( ) both functions are defined in the same files and declared in same files but when i build the project . I get Error for GPIO_ReadFromInputPin( ) and not for GPIO_Init( ) , how is this possible ?
Solved! Go to Solution.
2024-04-20 02:39 AM
Missing some source code somewhere.
Include files define interfaces and macros, they typically don't provide the code the Linker needs for closure.
What library is this. Lacking broader context.
2024-04-20 02:39 AM
Missing some source code somewhere.
Include files define interfaces and macros, they typically don't provide the code the Linker needs for closure.
What library is this. Lacking broader context.