diff options
author | siddhu8990 | 2015-12-08 11:43:14 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-08 11:43:14 +0530 |
commit | 56d929da6683ca38ab07870173dba5aadb451403 (patch) | |
tree | 481583d1acbde742f975ea7b140f005d4ac08216 /macros/sci2c_gui.sci | |
parent | 28917732a0c500c5db111ed49dbd7755758f5f72 (diff) | |
download | Scilab2C_fossee_old-56d929da6683ca38ab07870173dba5aadb451403.tar.gz Scilab2C_fossee_old-56d929da6683ca38ab07870173dba5aadb451403.tar.bz2 Scilab2C_fossee_old-56d929da6683ca38ab07870173dba5aadb451403.zip |
Modified so that code for all three output formats can be generated
Diffstat (limited to 'macros/sci2c_gui.sci')
-rw-r--r-- | macros/sci2c_gui.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/macros/sci2c_gui.sci b/macros/sci2c_gui.sci index 3abe497..cb75b15 100644 --- a/macros/sci2c_gui.sci +++ b/macros/sci2c_gui.sci @@ -214,6 +214,20 @@ outformatradioarduino = uicontrol("parent", sci2cfig,... "callback", "cb_sci2c_gui",... "tag", "outformatradioarduino"); +outformatradioavr = uicontrol("parent", sci2cfig,... + "style", "radiobutton",... + "string", gettext("AVR"),... + "position",[2*margin+widgetLabelWidth+3*radiow outformaty radiow widgeth],... + "horizontalalignment", "left",... + "fontname", defaultfont,... + "fontunits", "points",... + "fontsize", 12,... + "min", 0, ... + "max", 1, ... + "value", 0,... + "callback", "cb_sci2c_gui",... + "tag", "outformatradioavr"); + // --- Run mode option --- runy = outformaty + margin + widgeth; runlabel = uicontrol("parent", sci2cfig,... |