Hi,
I've got here an EVM6457-Board and want to do some time-meassurements on this board with an algorithm.
I have found some posts, about the problem of CCS4.1 and c6457, but they are all solved (I can run software directly on the hardware).
My Problem is now, that when I want to call the function CLK_gethtime(), I will receive the following linker errors:
errors encountered during linking; "Firsthello.out" not built Firsthello line 0 1371806004000 1357
unresolved symbol _CLK_gethtime, first referenced in ./main.obj Firsthello line 0 1371806004000 1356
The code of this small example project is the following:
#include <std.h>
#include <clk.h>
int main(){
unsigned long int i=CLK_gethtime();
return 0;
}
So can you help me, to understand what I am doing wrong?
Regards
Jan