11-19-2021 01:13 AM
Hi everyone, I am new to Labview. My question is, is labview compatible with STM32 devices? If so, what drivers do I have to download from VI Package manager?
Thanks in advance!
11-19-2021 06:56 AM - edited 11-19-2021 06:56 AM
It very much depends what you mean with compatible. If you want to download LabVIEW compiled code to your NucleoBoard, then you simply can't with the official National Instruments tools. The STM32 is not supported as a target at all.
If you mean talking to a program developed in one of the STM32 compatible IDEs such as Keil, IAR, or a GCC/LLVM based one using the STM32Cube software package then you simply will connect to your board either through TCP/IP (for the boards that have an Ethernet connector) and/or serial port/uart for other boards and communicate from your LabVIEW application through this channel. What you transfer over this link is up to you and needs to be implemented in a compatible way on your STM32 program and in LabVIEW.
11-20-2021 07:38 AM
Ahh I see, alright thank you for the help!