char key_to_channel(uint16 mask){ switch(mask) { case 1: return 'A'; case 2: return 'D'; case 4: return 'G'; default: return '?'; }}