Overview
| Comment: | Added ability to call ssSetErrorStatus during i/o processing. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
baa76ef978dff29b42540924a42fe83e |
| User & Date: | geraint@users.sourceforge.net on 2002-11-12 17:17:42.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-11-14
| ||
| 05:48:53 | Useful utility not yet in mtt check-in: 06489af4ca user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2002-11-12
| ||
| 17:17:42 | Added ability to call ssSetErrorStatus during i/o processing. check-in: baa76ef978 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 10:27:44 | Added instruction to set include path for compiler. check-in: 9f216f210b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/sfun_rep/sfun_interface.c.tmpl
from [2f89b5c9cc]
to [bbdb5fc62d].
| ︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | - + - + | /* Start EDIT */ /* Edit this block to define the number of controller inputs, outputs and parameters */ const int NumberOfControllerInputs = 1; /* inputs TO controller */ const int NumberOfControllerOutputs = 1; /* outputs FROM controller */ /* End EDIT */ static void |
| ︙ | |||
189 190 191 192 193 194 195 | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | - + |
static void mdlOutputs(SimStruct *S, int_T tid)
{
PRINT_ENTER;
update_inputs_from_simulink (S);
update_simtime_from_simulink (S);
|
| ︙ |