Closed polhenarejos closed 8 months ago
sub_cmd is an unsigned char, since VENDOR_PROTOTYPE is 0xff. If not, it cannot be encoded.
Currently, Config.CMD.VENDOR_PROTOTYPE (0xFF) cannot be encoded, since it is encoded as <b (signed char). It must be encoded as <B (unsigned char).
<b
<B
Thanks!
sub_cmd is an unsigned char, since VENDOR_PROTOTYPE is 0xff. If not, it cannot be encoded.
Currently, Config.CMD.VENDOR_PROTOTYPE (0xFF) cannot be encoded, since it is encoded as
<b
(signed char). It must be encoded as<B
(unsigned char).