Tool/software: Code Composer Studio
i actually dont understand why hex is supported and binary not
example:
P1DIR |= 0b00000001; // i get a compiler error >> #19 extra text after expected end of number
P1DIR |= 0x01; // works fine actually
i dont rly want to #define every single binary i use
2.) i heard about some boost-binary header which would support something like this:
P1DIR |= BOOST_BINARY(00000001);
does someone know about the header i could use?