Quartz to ARM board compatible code

Steps to follow:

1) Write application in Quartz (e.g. app1.qrz), synthesize code into the corresponding 'C' translation (generates app1.c and app1.h files)

2) Create a 'C' project (for e.g under Eclipse)

3) Add app1.c in the projects source folder and app1.h in the project's include folder.

4) Add glue code library (quartz_application_io.h) in your project's include folder

5) In the translated source file (app1.c), change the file reference (app1_io.h) to the glue code library (quartz_application_io.h)

6) Add object of your application in the makefile as: OBJECTS=$(OBJ)/app1.o \

7) Call the Quartz module (app1(-1)) in your project's main file, after initializing the peripherals (call Init_Peripheral() method)



See example applications; Quartz_application_1 and Speedmeter for reference.