| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- * PWM_mid.h
- *
- * Code generation for model "PWM_sf".
- *
- * Model version : 1.825
- * Simulink Coder version : 9.4 (R2020b) 29-Jul-2020
- * C source code generated on : Fri Apr 14 12:53:29 2023
- *
- * Target selection: rtwsfcn.tlc
- * Note: GRT includes extra infrastructure and instrumentation for prototyping
- * Embedded hardware selection: ARM Compatible->ARM Cortex-M
- * Emulation hardware selection:
- * Differs from embedded hardware (MATLAB Host)
- * Code generation objectives:
- * 1. Execution efficiency
- * 2. RAM efficiency
- * Validation result: Not run
- *
- * SOURCES: PWM_sf.c
- */
- #include "simstruc.h"
- #include "PWM_sf.h"
- #if defined(MATLAB_MEX_FILE) || defined(RT_MALLOC)
- static int_T RegNumInputPorts(SimStruct *S, int_T nInputPorts)
- {
- _ssSetNumInputPorts(S,nInputPorts);
- return true;
- }
- static int_T RegNumOutputPorts(SimStruct *S, int_T nOutputPorts)
- {
- _ssSetNumOutputPorts(S,nOutputPorts);
- return true;
- }
- static int_T FcnSetErrorStatus(const SimStruct *S, DTypeId arg2)
- {
- static char msg[256];
- if (strlen(ssGetModelName(S)) < 128) {
- sprintf(msg,
- "S-function %s does not have a tlc file. It cannot use macros that access regDataType field in simstruct.",
- ssGetModelName(S));
- } else {
- sprintf(msg,
- "A S-function does not have a tlc file. It cannot use macros that access regDataType field in simstruct.");
- }
- ssSetErrorStatus(S, msg);
- UNUSED_PARAMETER(arg2);
- return 0;
- }
- static void * FcnSetErrorStatusWithReturnPtr(const SimStruct *S, DTypeId arg2)
- {
- FcnSetErrorStatus(S,0);
- UNUSED_PARAMETER(arg2);
- return 0;
- }
- static int_T FcnSetErrorStatusWithArgPtr(const SimStruct *S, const void* arg2)
- {
- FcnSetErrorStatus(S,0);
- UNUSED_PARAMETER(arg2);
- return 0;
- }
- #endif
- /* Instance data for model: PWM */
- void *PWM_malloc(SimStruct *rts)
- {
- /* Local SimStruct for the generated S-Function */
- LocalS *lS = (LocalS *) malloc(sizeof(LocalS));
- ss_VALIDATE_MEMORY(rts,lS);
- (void) memset((char *) lS, 0,
- sizeof(LocalS));
- ssSetUserData(rts, lS);
- /* block I/O */
- {
- void *b = malloc(sizeof(B_PWM_T));
- ss_VALIDATE_MEMORY(rts,b);
- ssSetLocalBlockIO(rts, b);
- (void) memset(b, 0,
- sizeof(B_PWM_T));
- }
- /* model checksums */
- ssSetChecksumVal(rts, 0, 1460315084U);
- ssSetChecksumVal(rts, 1, 1873271935U);
- ssSetChecksumVal(rts, 2, 11797905U);
- ssSetChecksumVal(rts, 3, 1909962613U);
- return (NULL);
- }
|