This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

An 8Byte vairable with binary operations

I am finding it a bit difficult to get a 8byte variable on which i can perform binary operations such as logical bit ORing '|' and/or logical bit ANDing '&'.

cant define the variable as double as the compiler gives an error.

an alternative is to use a structure with two 'uint32_t' variables. but would prefer using a single variable if there exists an possible way.