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

printf ("%bu",c);

Hi,
there an example in CARM user guide:

#include <stdio.h>

void test_getkey (void) {

  while ((c = _getkey ()) != 0x1B) {
    printf ("key = %c %bu %bx\n", c, c, c);
  }
}


So what's the meaning of %bu and %bx?
I can compile it, but responce is ey = a Bu Bx after pressing an a

0