servo_demo_sfun.h
上传用户:m_sun_001
上传日期:2014-07-30
资源大小:1115k
文件大小:1k
源码类别:

matlab例程

开发平台:

Matlab

  1. #ifndef __servo_demo_sfun_h__
  2. #define __servo_demo_sfun_h__
  3. /* Include files */
  4. #define S_FUNCTION_NAME                 sf_sfun
  5. #include "sfc_sf.h"
  6. #include "sfc_mex.h"
  7. #include "template_support_fcn_list.h"
  8. #include "sfcdebug.h"
  9. #define rtInf                           (mxGetInf())
  10. #define rtMinusInf                      (-(mxGetInf()))
  11. #define rtNaN                           (mxGetNaN())
  12. #define rtIsNaN(X) ((int)mxIsNaN(X))
  13. #define rtIsInf(X) ((int)mxIsInf(X))
  14. /* Custom Code from Simulation Target dialog*/
  15. #include <math.h>
  16. /* Type Definitions */
  17. /* Named Constants */
  18. #define CALL_EVENT                      (MAX_uint8_T)
  19. /* Variable Declarations */
  20. extern uint8_T _sfEvent_;
  21. extern uint32_T _servo_demoMachineNumber_;
  22. extern real_T _sfTime_;
  23. /* Variable Definitions */
  24. /* Function Declarations */
  25. void servo_demo_initializer(void);
  26. void servo_demo_terminator(void);
  27. /* Function Definitions */
  28. #endif