diff options
author | ukashanoor | 2017-06-21 12:15:47 +0530 |
---|---|---|
committer | ukashanoor | 2017-06-21 12:15:47 +0530 |
commit | 18f7cf96174799b674115e43f108423fa5d0fc9c (patch) | |
tree | ab0d0ac7a349986cf95556b7c1975748cbfb8ec1 /macros/CCodeGeneration/C_GenerateMkfle_arduino.sci | |
parent | 785e19f097f7ca1964edaf159c9adfe2eda733b5 (diff) | |
parent | e92d6c6791aae06053637ad3bf6b0f9d8986986c (diff) | |
download | scilab2c-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.sci | 12 |
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 |