I created a program to send numbers to a display (TM1637), I am programming using Tiva C series(TM4c123gh6pm) to send commands and data to the display. Everything is working in keil uvision so I created a dll project using the cpp and header files that i used in keil and the build was successful but when i am trying to debug there is no option to select Stellaris ICD and with the local debug its giving a invalid error (no privileges to write to the address), is there a way to test/debug using visual studios . My main goal is to create a dll file and use it in the LABVIEW and talk to the Tiva c series board
Hello likki. Sorry, I can't really follow. What exactly do you mean by "dll" or "dll project" in this context? Do you want to create a library with the files from your project? If yes, the library will not work on it's own. You will need to use the library in another project to create your executable. Also, what Arm/Keil product are you exactly using? Is it MDK 5 or MDK 6?
Hello Andreas, sorry for the confusion, yes I want to create a library and use it in another project, so is there a option in uKeil to create libraries or I need to use a different software like visual studios for that? Currently, i am using MDK 5
Hello likki. Yes, you can configure the MDK 5/uVision project to generate a library:
https://developer.arm.com/documentation/101407/0538/Creating-Applications/Tips-and-Tricks/Create-a-Library-File
The resulting library you can then use in some other MDK 5/uVision project. Hope this helps.