File: rt_defines.h1 /* 2 * File: rt_defines.h 3 * 4 * Code generated for Simulink model 'CONTROL_SYS'. 5 * 6 * Model version : 1.379 7 * Simulink Coder version : 8.11 (R2016b) 25-Aug-2016 8 * C/C++ source code generated on : Thu Dec 22 12:00:05 2016 9 * 10 * Target selection: ert.tlc 11 * Embedded hardware selection: Intel->x86-64 (Windows64) 12 * Code generation objectives: 13 * 1. Traceability 14 * 2. Execution efficiency 15 * 3. ROM efficiency 16 * 4. RAM efficiency 17 * Validation result: Not run 18 */ 19 20 #ifndef RTW_HEADER_rt_defines_h_ 21 #define RTW_HEADER_rt_defines_h_ 22 23 /*===========* 24 * Constants * 25 *===========*/ 26 #define RT_PI 3.14159265358979323846 27 #define RT_PIF 3.1415927F 28 #define RT_LN_10 2.30258509299404568402 29 #define RT_LN_10F 2.3025851F 30 #define RT_LOG10E 0.43429448190325182765 31 #define RT_LOG10EF 0.43429449F 32 #define RT_E 2.7182818284590452354 33 #define RT_EF 2.7182817F 34 35 /* 36 * UNUSED_PARAMETER(x) 37 * Used to specify that a function parameter (argument) is required but not 38 * accessed by the function body. 39 */ 40 #ifndef UNUSED_PARAMETER 41 # if defined(__LCC__) 42 # define UNUSED_PARAMETER(x) /* do nothing */ 43 # else 44 45 /* 46 * This is the semi-ANSI standard way of indicating that an 47 * unused function parameter is required. 48 */ 49 # define UNUSED_PARAMETER(x) (void) (x) 50 # endif 51 #endif 52 #endif /* RTW_HEADER_rt_defines_h_ */ 53 54 /* 55 * File trailer for generated code. 56 * 57 * [EOF] 58 */ 59 |