What does "function ?? declared implicitly" means?
조회 수: 37 (최근 30일)
이전 댓글 표시
Hi, I'm trying to integrate my c code to simulink.
I made a header file and a source file named file.h and file.c.
and there is a function named function1 and the code is stated below.
function1(void)
{
static double a;
a = a+1;
return a;
}
Next, I made a C caller block and typed like below.
function1();
After that, I ran my code and the error is stated like this.
In line 1:error: 223, function "function1" declared implicitly
| function1();
| ^
How can I solve this error?
댓글 수: 0
답변 (1개)
Bruno Luong
2023년 9월 11일
편집: Bruno Luong
2023년 9월 11일
you need add double as return type for your function prototype and declaration
double function1(void);
double function1(void)
{
...
}
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!