System date and time in XPC target model

2 ビュー (過去 30 日間)
Jan De Vries
Jan De Vries 2012 年 8 月 28 日
I need to get the system date and time in my simulink model, which is used for XPC target. In simulink, this is not a problem, using the embedded matlab function with the following code:
function [Y, M, D, H, MN, S] = sysClock()
coder.extrinsic('clock');
Y = 0;
M = 0;
D = 0;
H = 0;
MN = 0;
S = 0;
[Y, M, D, H, MN, S] = clock;
end
However, this block gives me error messages when I try to compile it to XPC. Is there another way? Or do I need to change the code? Shouldn't be such a difficult problem I would say...
Thanks!!

採用された回答

Jan De Vries
Jan De Vries 2012 年 8 月 28 日

その他の回答 (1 件)

Jan De Vries
Jan De Vries 2012 年 8 月 28 日
Thanks, but when I try to mex xpcwalltime.c, I receive the following error:
Error xpcwalltime.c: 122 type error in argument 3 to a function; found `int' expected `pointer to const struct DimsInfo_tag'
Error xpcwalltime.c: 172 type error in argument 3 to `_ssSetOutputPortVectorDimension'; found `pointer to struct DimsInfo_tag' expected `int'
Warning xpcwalltime.c: C:\PROGRA~1\MATLAB\R2011B\simulink\include\simulink.c: 2481 assignment of pointer to void function(pointer to struct SimStruct_tag,int,pointer to const struct DimsInfo_tag) to pointer to void function(pointer to struct SimStruct_tag,int,pointer to struct DimsInfo_tag)
Warning xpcwalltime.c: C:\PROGRA~1\MATLAB\R2011B\simulink\include\simulink.c: 2485 assignment of pointer to void function(pointer to struct SimStruct_tag,int,pointer to const struct DimsInfo_tag) to pointer to void function(pointer to struct SimStruct_tag,int,pointer to struct DimsInfo_tag)
2 errors, 2 warnings
C:\PROGRA~1\MATLAB\R2011B\BIN\MEX.PL: Error: Compile of 'xpcwalltime.c' failed.
Error using mex (line 206)
Unable to complete successfully.
I use XPC target 5.1 FWIW
  2 件のコメント
Kaustubha Govind
Kaustubha Govind 2012 年 8 月 28 日
Where do you get xpcwalltime.c from? The file in the above solution is named xpctimeofday2.c, and I am able to compile it successfully with the mex command.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeReporting and Database Access についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by