I have this function to convert a character sequence of 7 bits to the actual character it represents (ASCII). So for example, taken the string "1001110" the function should return 'N.'
char bits_to_char(char* bits)
{
byte ret = 0;
int i = 0;
for(i = 0; i < CHAR_SZ; i++){
if(bits[i] == '1'){
ret++;
}
(ret << 1) && 0xFF;
}
return (char) ret;
}
The left shift on ret isn't happening. When I step through it with my debugger it just skips it completely. I tried adding a continue
after the increment on ret
but it didn't change anything.
The line
at best does the operation and throws away the result.
A reasonable compiler will spot this and optimise it away