Skip to Main Content Skip to Search
Product Documentation

Call External C Functions from a Model and Generated Code

About This Example

Learning Objectives

Prerequisites

Required Files

Include External C Functions in a Model

Simulink models are one part of Model-Based Design. For many applications, a design also includes a set of preexisting C functions created, tested (verified), and validated outside of a MATLAB and Simulink environment. You can integrate these functions easily into a model and the generated code. External C code can be used in the generated code to access hardware devices and external data files during rapid simulation runs.

This example shows you how to create a custom block that calls an external C function. Once the block is part of the model, you can take advantage of the simulation environment to test the system further.

Create a Block That Calls a C Function

To specify a call to an external C function, use an S-Function block. You can automate the process of creating the S-Function block by using the Simulink Legacy Code Tool. Using this tool, you specify an interface for your external C function. The tool then uses that interface to automate creation of an S-Function block.

  1. Make copies of the files SimpleTable.c and SimpleTable.h, located in matlabroot/toolbox/rtw/rtwdemos/EmbeddedCoderOverview/stage_4_files. Put the copies in your working folder.

      Note   matlabroot represents the name of your top-level MATLAB installation folder.

  2. Create an S-Function block that calls the specified function at each time step during simulation:

    1. In the MATLAB Command Window, create a function interface definition structure:

      def=legacy_code('initialize')

      The data structure def defines the function interface to the external C code.

      def = 
      
                        SFunctionName: ''
          InitializeConditionsFcnSpec: ''
                        OutputFcnSpec: ''
                         StartFcnSpec: ''
                     TerminateFcnSpec: ''
                          HeaderFiles: {}
                          SourceFiles: {}
                         HostLibFiles: {}
                       TargetLibFiles: {}
                             IncPaths: {}
                             SrcPaths: {}
                             LibPaths: {}
                           SampleTime: 'inherited'
                              Options: [1x1 struct]
    2. Populate the function interface definition structure by entering the following commands:

      def.OutputFcnSpec=['double y1 = SimpleTable(double u1,',...
         'double p1[], double p2[], int16 p3)'];
      def.HeaderFiles = {'SimpleTable.h'};
      def.SourceFiles = {'SimpleTable.c'};
      def.SFunctionName = 'SimpTableWrap';
    3. Create the S-function:

      legacy_code('sfcn_cmex_generate', def)
    4. Compile the S-function:

      legacy_code('compile', def)
    5. Create the S-Function block:

      legacy_code('slblock_generate', def)

      A new model window opens that contains the SimpTableWrap block.

        Tip   Creating the S-Function block is a one-time task. Once the block exists, you can reuse it in any model.

  3. Save the model to your working folder as: s_func_simptablewrap.mdl.

  4. Create a Target Language Compiler (TLC) file for the S-Function block:

    legacy_code('sfcn_tlc_generate', def)

    The TLC file is the component of an S-function that specifies how the code generator produces the code for a block.

For more information on using the Legacy Code Tool, see:

Validate External Code in the Simulink Environment

When you integrate external C code with a Simulink model, before using the code, always validate the functionality of the external C function code as a standalone component.

  1. Open the model rtwdemo_ValidateLegacyCodeVrsSim.mdl. This model validates the S-function block that you just created.

    • The Sine Wave block produces output values from [-2 : 2].

    • The input range of the lookup table is from [-1 : 1].

    • The output from the lookup table is the absolute value of the input.

    • The lookup table output clips the output at the input limits.

  2. Simulate the model.

  3. View the validation results by opening the Validation subsystem and, in that subsystem, clicking the Scope block.

    The following figure shows the validation results. The external C code and the Simulink Lookup table block provide the same output values.

  4. Close the validation model.

Validate C Code as Part of a Model

After you validate the functionality of the external C function code as a standalone component, validate the S-function in the model. Use the test harness model to complete the validation.

  1. Open rtwdemo_throttlecntrl_extfunccall.mdl and save a copy as throttlecntrl_extfunccall.mdl in a writable folder on your MATLAB path.

  2. Examine the PI_ctrl_1 and PI_ctrl_2 subsystems.

    1. Lookup blocks have been replaced with the block you created using the Legacy Code Tool.

    2. Note the block parameter settings for SimpTableWrap and SimpTableWrap1.

    3. Close the Block Parameter dialog boxes and the PI subsystem windows.

  3. Open the test harness model, right-click the Unit_Under_Test Model block, and select Model Reference Parameters.

  4. Set Model name (without the .mdl extension) to throttlecntrl_extfunccall. Click OK.

  5. Update the test harness model diagram.

  6. Simulate the test harness.

    The simulation results match the expected golden values.

  7. Save and close throttlecntrl_extfunccall.mdl and rtwdemo_throttlecntrl_testharness.mdl.

Call a C Function from Generated Code

The code generator uses a TLC file to process the S-Function block. Calls to C code embedded in an S-Function block:

  1. Open rtwdemo_throttlecntrl_extfunccall.mdl.

  2. Generate code for the model.

  3. Examine the generated code in the filethrottlecntrl_extfunccall.c.

    The following code fragment shows code for a Lookup Table block before you replaced the block with the external SimpleTable function:

    throttlecntrl_extfunccall_B.Discrete_Time_Integrator1 = throttlecntrl_extfunccall_P.I_Gain *
        rt_Lookup((const real_T *)throttlecntrl_extfunccall_P.I_InErrMap, 9, rtb_Sum3, 
        (const real_T *)throttlecntrl_extfunccall_P.I_OutMap) * rtb_Sum3 * 0.001 +
        throttlecntrl_extfunccall_DWork.Discrete_Time_Integrator1_DSTAT;

    After you integrate the SimpleTable function, the generated code appears as follows:

    throttlecntrl_extfunccall_B.Discrete_Time_Integrator1 = throttlecntrl_extfunccall_P.I_Gain *
        SimpleTable( (real_T)rtb_Sum2, (real_T*)throttlecntrl_extfunccall_P.I_InErrMap, (real_T*)
                    throttlecntrl_extfunccall_P.I_OutMap, (int16_T)9) * rtb_Sum2 * 0.001 +
        throttlecntrl_extfunccall_DWork.Discrete_Time_Integrator1_DSTAT;
  4. Close throttlecntrl_extfunccall.mdl and throttlecntrl_testharness.mdl.

Key Points

Learn More

  


Related Products & Applications

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.

 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS