Undefined reference to a function
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-04-20 1: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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-04-20 2: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.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-04-20 2: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.
Up vote any posts that you find helpful, it shows what's working..
