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