Integration in STM32 microcontroller #225
Unanswered
DanielSSolid360
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Hello @DanielSSolid360 It is certainly possible and a port for STM32 has been reported working before. Have you see other threads that discuss porting? such as this and this?
It is not enough to compile the example alone. You'd need to build LibOSDP for your target first and then link it to the example. If you do not want to do this, you could use something like PlatformIO/vcpkg where LibOSDP is already ported. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm trying to integrate your libosdp library into my STM32 following your C example, but it's not working. The linker is missing some functions (such as osdp_cp_setup) that are actually defined in files like osdp_cp.c, where other headers like module.h or utils are called, which in turn use other libraries or functions outside the scope of an STM32. So, is it even feasible to integrate this library into an STM32 microcontroller, or am I wasting my time?
Additional info: My keil uVision project is built using the ARM 6.16 compiler, which might be the reason I have issues trying to integrate this since it has a propietary LLVM/Clang compiler and it's own linker.
Beta Was this translation helpful? Give feedback.
All reactions