sx1280: assert on unhandled ll control opcode

This commit is contained in:
Matthias Ringwald 2021-05-02 00:43:11 +02:00
parent 6e34cf2cc2
commit 927d0c32dd

View File

@ -1136,6 +1136,8 @@ static void ll_handle_control(ll_pdu_t * rx_packet){
ll_terminate();
break;
default:
btstack_assert(false);
printf("Unhandled LL Control PDU 0x%02x\n", opcode);
break;
}
}