Hello,
I'm developing an application and I had found that the next portion of code
only increment "i" until 10 and then reset the value of "i" to 0.
The piece of code is :
for(i=0;i<size;i++){
blocks[(i*4)]=hash[i]>>24;
blocks[(i*4)+1]=hash[i]>>16 & 0x0FF;
blocks[(i*4)+2]=hash[i]>>8 & 0x0ff;
blocks[(i*4)+3]=hash[i] & 0x0FF;
}
_______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
