diff options
author | sumeet14 | 2018-06-29 19:37:40 +0530 |
---|---|---|
committer | sumeet14 | 2018-06-29 19:37:40 +0530 |
commit | f8e52158ccf5c2077f0d3183e86797463cab4c2b (patch) | |
tree | a44b90f1c4a157e9ce6f2422c7fed7910240131b | |
parent | 7273bd89b307f48f1455b010bb68a2ef95a45776 (diff) | |
download | OpenModelicaEmbedded-f8e52158ccf5c2077f0d3183e86797463cab4c2b.tar.gz OpenModelicaEmbedded-f8e52158ccf5c2077f0d3183e86797463cab4c2b.tar.bz2 OpenModelicaEmbedded-f8e52158ccf5c2077f0d3183e86797463cab4c2b.zip |
README updated
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -11,7 +11,23 @@ OpenModelica for Embedded Applications * Follow the installation instructions provided by [Energia](http://energia.nu/download/). * In Energia IDE, Select `Tools` and the `Board` and check if `Tiva C` board is present. * If not, then click on `Board Manager`, type Tiva C in search bar and then click on `Install` to install board. +* While using Energia on Windows Operating System, make sure you install necessary device drivers by following the instructions given [here](http://energia.nu/guide/guide_windows/). --- +##How to make changes to source code? + +##Linux Operating System +* Open the source codes by browsing to this location : `OpenModelicaEmbedded > Source`. +* After making changes to these files open `Terminal`. +* Browse to `OpenModelicaEmbedded > Source` folder using `cd` command. +* Run command `make`. + +##Windows Operating System +* Open the source codes by browsing to this location : `OpenModelicaEmbedded > Source`. +* After making changes to these files open `Command Prompt (cmd)`. +* Browse to `OpenModelicaEmbedded > Source` folder using `cd` command. +* To compile the CPP files run the command: `g++ -c file1.cpp file2.cpp ...`. +* To create a DLL from generated object files, run the command: `g++ -shared -o modelPlugFirmata.dll file1.o file2.o ...`. +* Then copy the generated DLL file and paste it in folders: `OpenModelicaEmbedded` and `Resources > Library > win64`. ## Working with Arduino UNO [Atmega328p] |