summaryrefslogtreecommitdiff
path: root/macros/CCodeGeneration/C_GenerateMkfle_arduino.sci
diff options
context:
space:
mode:
authorukashanoor2017-06-21 12:15:47 +0530
committerukashanoor2017-06-21 12:15:47 +0530
commit18f7cf96174799b674115e43f108423fa5d0fc9c (patch)
treeab0d0ac7a349986cf95556b7c1975748cbfb8ec1 /macros/CCodeGeneration/C_GenerateMkfle_arduino.sci
parent785e19f097f7ca1964edaf159c9adfe2eda733b5 (diff)
parente92d6c6791aae06053637ad3bf6b0f9d8986986c (diff)
downloadscilab2c-18f7cf96174799b674115e43f108423fa5d0fc9c.tar.gz
scilab2c-18f7cf96174799b674115e43f108423fa5d0fc9c.tar.bz2
scilab2c-18f7cf96174799b674115e43f108423fa5d0fc9c.zip
updated with main repo
Diffstat (limited to 'macros/CCodeGeneration/C_GenerateMkfle_arduino.sci')
-rw-r--r--macros/CCodeGeneration/C_GenerateMkfle_arduino.sci12
1 files changed, 12 insertions, 0 deletions
diff --git a/macros/CCodeGeneration/C_GenerateMkfle_arduino.sci b/macros/CCodeGeneration/C_GenerateMkfle_arduino.sci
new file mode 100644
index 00000000..b43eb442
--- /dev/null
+++ b/macros/CCodeGeneration/C_GenerateMkfle_arduino.sci
@@ -0,0 +1,12 @@
+function C_GenerateMkfle_arduino(FileInfo,SharedInfo)
+
+ PrintStringInfo('ARDUINO_DIR = /usr/share/arduino',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('ARDMK_DIR = /usr/share/arduino',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('AVR_TOOLS_DIR = /usr',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('BOARD_TAG = ' + SharedInfo.Board_name ,FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('USER_LIB_PATH = ../',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('ARDUINO_LIBS = ../src/c ../includes ../interfaces ../ Wire',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('ARDUINO_PORT = /dev/ttyACM0',FileInfo.MakefileFilename,'file','y','y');
+ PrintStringInfo('include /usr/share/arduino/Arduino.mk',FileInfo.MakefileFilename,'file','y','y');
+
+endfunction