]> rtime.felk.cvut.cz Git - jenkicar/rpp-simulink.git/blob - rpp/blocks/sfunction_sdrw.c
Finished to implement Simulink masks for all S-Functions. Also added printf format...
[jenkicar/rpp-simulink.git] / rpp / blocks / sfunction_sdrw.c
1 /* Copyright (C) 2013 Czech Technical University in Prague
2  *
3  * Authors:
4  *     - Carlos Jenkins <carlos@jenkins.co.cr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * File : sfunction_sdrw.c
20  * Abstract:
21  *     C-MEX S-function block for RPP SD-RAM log write.
22  *
23  * References:
24  *     header.c
25  *     trailer.c
26  *
27  * Compile with:
28  *     <matlabroot>/bin/mex sfunction_sdrw.c
29  */
30
31
32 #define S_FUNCTION_NAME sfunction_sdrw
33 #include "header.c"
34
35
36 static void mdlInitializeSizes(SimStruct *S)
37 {
38     /*
39      * Configure parameters: 2
40      *  - Block ID.
41      *  - Printf format [setting].
42      */
43     if(!rppSetNumParams(S, 2)) {
44         return;
45     }
46
47     /*
48      * Configure input ports: 1
49      *  - Data.
50      */
51     if(!ssSetNumInputPorts(S, 1)) {
52         return;
53     }
54     rppAddInputPort(S, 0, SS_DOUBLE);
55
56     /*
57      * Configure output ports: 1
58      *  - Error flag.
59      */
60     if(!ssSetNumOutputPorts(S, 1)) {
61         return;
62     }
63     rppAddOutputPort(S, 0, SS_BOOLEAN);
64
65     /* Set standard options for this block */
66     rppSetStandardOptions(S);
67 }
68
69
70 #ifdef MATLAB_MEX_FILE
71 #define MDL_CHECK_PARAMETERS
72 static void mdlCheckParameters(SimStruct *S)
73 {
74     /* Check the parameter 1 */
75     if(!rppValidParamRange(S, 0, 0, 255)) {
76         return;
77     }
78 }
79 #endif
80
81
82 #ifdef MATLAB_MEX_FILE
83 #define MDL_SET_WORK_WIDTHS
84 static void mdlSetWorkWidths(SimStruct *S)
85 {
86     /* Set number of run-time parameters */
87     if(!ssSetNumRunTimeParams(S, 1)) {
88         return;
89     }
90
91     /* Register the run-time parameter 1 */
92     ssRegDlgParamAsRunTimeParam(S, 0, 0, "p1", SS_UINT8);
93 }
94 #endif
95
96
97 #ifdef MATLAB_MEX_FILE
98 #define MDL_RTW
99 static void mdlRTW(SimStruct* S)
100 {
101     /* Register parameter 2 as a parameter setting */
102     static char_T str[128];
103     mxGetString(ssGetSFcnParam(S, 1), (char*)&str, sizeof(str)); // Get string
104     if(!ssWriteRTWParamSettings(S, 1,
105             SSWRITE_VALUE_QSTR, "PrintfFormat", (const char_T*)&str)) {
106         // An error ocurred
107         return;
108     }
109 }
110 #endif
111
112
113 #define COMMON_MDLINITIALIZESAMPLETIMES_INHERIT
114 #define UNUSED_MDLOUTPUTS
115 #define UNUSED_MDLTERMINATE
116 #include "trailer.c"