| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /*
- * rt_defines.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
- */
- #ifndef RTW_HEADER_rt_defines_h_
- #define RTW_HEADER_rt_defines_h_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /*===========*
- * Constants *
- *===========*/
-
- #define RT_PI 3.14159265358979323846
- #define RT_PIF 3.1415927F
- #define RT_LN_10 2.30258509299404568402
- #define RT_LN_10F 2.3025851F
- #define RT_LOG10E 0.43429448190325182765
- #define RT_LOG10EF 0.43429449F
- #define RT_E 2.7182818284590452354
- #define RT_EF 2.7182817F
- /*
- * UNUSED_PARAMETER(x)
- * Used to specify that a function parameter (argument) is required but not
- * accessed by the function body.
- */
- #ifndef UNUSED_PARAMETER
- #if defined(__LCC__)
- #define UNUSED_PARAMETER(x) /* do nothing */
- #else
- /*
- * This is the semi-ANSI standard way of indicating that an
- * unused function parameter is required.
- */
- #define UNUSED_PARAMETER(x) (void) (x)
- #endif
- #endif
-
-
-
-
-
- #endif /* RTW_HEADER_rt_defines_h_ */
|