I’m wanting to learn more about RLP (and dust off my over decade old minimal C experience).
As per directions, I’ve downloaded Yagarto for the compiler and was able to do the basic Getting Started in Wiki.
Can I use Visual Studio C++ Express for developing RLP libraries? My understanding is that I can’t use it for compiling, so my hope is to just use it for the IDE aspect.
Why not? It’s just a code editor. You can use any C code editor you want as long as you compile (and do final syntax check) in the specified compiler for your mainboard.
You can add a “Tool” for yagarto: specify “make” as Command and “$(ProjectPath)” as Folder. When you run the tool, Programmers Notepad will capture the output, and you can double click on warnings and errors in the output window to get redirected to the source code.
You can add another “Tool” that copies the ELF file to the Resources folder of you NETMF project… Files can be arranged in “Projects” and “Projects” in “Workspaces”, pretty much like VS.
Visual Studio just uses msbuild, so you could make it use anything you wanted to do the compile. I’m sure someone out there has some tips on using msbuild with a gcc toolchain.