I have a problem when i create a header file where i define three struct! The problem is a dependence between the struct. I try this like-c syntax but I receive an error when I compile the code.
The error is:
/home/user/top/t2_cur/tinyos-2.x/tos/platforms/telosb/mac/tkn154/timer/Alarm32khzTo62500hzTransformC.nc:53:2: warning: #warning "Warning: MAC timing is not standard compliant!" make: * [exe0] Error 1
This is my code:
#define PRECISION nx_float
typedef nx_struct neurA neuronA;
typedef nx_struct neurB neuronB;
typedef nx_struct neurC neuronC;
nx_struct neurB{
neurA in[2];
neurC out;
PRECISION trans_value;
PRECISION prop_value;
PRECISION delta;
PRECISION in_weight[2];
PRECISION out_weight[1];
}
nx_struct neurA{
neurB out[3];
PRECISION trans_value;
PRECISION delta;
PRECISION out_weight[3];
}
nx_struct neurC{
neurB in;
PRECISION trans_value;
PRECISION prop_value;
PRECISION delta;
PRECISION in_weight;
}
The struct neurB declares at its inside the variables neurC and neurB. If i put the declaration of neurB struct above all other struct in the code, the error is caused by the neurC struct that at its inside declare neurb variable. If I invert the declaration of struct the problem persists with another cause.
I have also try in this way:
typedef nx_struct neurA{
neurB out[3];
PRECISION trans_value;
PRECISION delta;
PRECISION out_weight[3];
}neurA;
typedef nx_struct neurC{
neurB in;
PRECISION trans_value;
PRECISION prop_value;
PRECISION delta;
PRECISION in_weight;
}neurC;
typedef nx_struct neurB{
neurA in[2];
neurC out;
PRECISION trans_value;
PRECISION prop_value;
PRECISION delta;
PRECISION in_weight[2];
PRECISION out_weight[1];
}neurB;
Sometimes error messages are strange and incomprehensible, I dont know the headers surrounding this and if this could be the case. Try with something simple like
substituting Your own types into the program one at a time
I think, looking at the above, that You need to have typedeffed the neurA like the Point above before using it.