?? robot_2link_sfun.c
字號:
/* Include files */
#include "robot_2link_sfun.h"
#include "c2_robot_2link.h"
/* Type Definitions */
/* Named Constants */
/* Variable Declarations */
/* Variable Definitions */
uint8_T _sfEvent_;
uint32_T _robot_2linkMachineNumber_;
real_T _sfTime_;
/* Function Declarations */
/* Function Definitions */
void robot_2link_initializer(void)
{
_sfEvent_ = CALL_EVENT;
}
void robot_2link_terminator(void)
{
}
/* SFunction Glue Code */
unsigned int sf_robot_2link_method_dispatcher(SimStruct *simstructPtr, const
char *chartName, int_T method, void *data)
{
if(!strcmp_ignore_ws(chartName,"robot_2link/Controller PD/Embedded MATLAB Function/ SFunction "))
{
c2_robot_2link_method_dispatcher(simstructPtr, method, data);
return 1;
}
return 0;
}
unsigned int sf_robot_2link_process_check_sum_call( int nlhs, mxArray * plhs[],
int nrhs, const mxArray * prhs[] )
{
#ifdef MATLAB_MEX_FILE
char commandName[20];
if (nrhs<1 || !mxIsChar(prhs[0]) ) return 0;
/* Possible call to get the checksum */
mxGetString(prhs[0], commandName,sizeof(commandName)/sizeof(char));
commandName[(sizeof(commandName)/sizeof(char)-1)] = '\0';
if(strcmp(commandName,"sf_get_check_sum")) return 0;
plhs[0] = mxCreateDoubleMatrix( 1,4,mxREAL);
if(nrhs>1 && mxIsChar(prhs[1])) {
mxGetString(prhs[1], commandName,sizeof(commandName)/sizeof(char));
commandName[(sizeof(commandName)/sizeof(char)-1)] = '\0';
if(!strcmp(commandName,"machine")) {
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(2145821976U);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(293846545U);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(273540981U);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(1277337603U);
}else if(!strcmp(commandName,"exportedFcn")) {
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(0U);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(0U);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(0U);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(0U);
}else if(!strcmp(commandName,"makefile")) {
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(2945944195U);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(3884049298U);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(1586897201U);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(1439582548U);
}else if(nrhs==3 && !strcmp(commandName,"chart")) {
unsigned int chartFileNumber;
chartFileNumber = (unsigned int)mxGetScalar(prhs[2]);
switch(chartFileNumber) {
case 2:
{
extern void sf_c2_robot_2link_get_check_sum(mxArray *plhs[]);
sf_c2_robot_2link_get_check_sum(plhs);
break;
}
default:
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(0.0);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(0.0);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(0.0);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(0.0);
}
}else if(!strcmp(commandName,"target")) {
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(4125229215U);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(365478573U);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(1351650418U);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(619095777U);
}else {
return 0;
}
} else{
((real_T *)mxGetPr((plhs[0])))[0] = (real_T)(193844479U);
((real_T *)mxGetPr((plhs[0])))[1] = (real_T)(408542469U);
((real_T *)mxGetPr((plhs[0])))[2] = (real_T)(1250229696U);
((real_T *)mxGetPr((plhs[0])))[3] = (real_T)(2369858090U);
}
return 1;
#else
return 0;
#endif
}
unsigned int sf_robot_2link_autoinheritance_info( int nlhs, mxArray * plhs[],
int nrhs, const mxArray * prhs[] )
{
#ifdef MATLAB_MEX_FILE
char commandName[32];
if (nrhs<2 || !mxIsChar(prhs[0]) ) return 0;
/* Possible call to get the autoinheritance_info */
mxGetString(prhs[0], commandName,sizeof(commandName)/sizeof(char));
commandName[(sizeof(commandName)/sizeof(char)-1)] = '\0';
if(strcmp(commandName,"get_autoinheritance_info")) return 0;
{
unsigned int chartFileNumber;
chartFileNumber = (unsigned int)mxGetScalar(prhs[1]);
switch(chartFileNumber) {
case 2:
{
extern mxArray *sf_c2_robot_2link_get_autoinheritance_info(void);
plhs[0] = sf_c2_robot_2link_get_autoinheritance_info();
break;
}
default:
plhs[0] = mxCreateDoubleMatrix(0,0,mxREAL);
}
}
return 1;
#else
return 0;
#endif
}
void robot_2link_debug_initialize(void)
{
_robot_2linkMachineNumber_ =
sf_debug_initialize_machine("robot_2link","sfun",0,1,0,0,0);
sf_debug_set_machine_event_thresholds(_robot_2linkMachineNumber_,0,0);
sf_debug_set_machine_data_thresholds(_robot_2linkMachineNumber_,0);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -