Okay, so I change this:
Code:
class KINDLE2(KINDLE):
name = 'Kindle 2 Device Interface'
description = _('Communicate with the Kindle 2 eBook reader.')
FORMATS = KINDLE.FORMATS + ['pdf']
PRODUCT_ID = [0x0002]
BCD = [0x0100]
to
Code:
class KINDLE2(KINDLE):
name = 'Kindle 2 Device Interface'
description = _('Communicate with the Kindle 2 eBook reader.')
FORMATS = KINDLE.FORMATS + ['pdf']
PRODUCT_ID = [0x0004]
BCD = [0x0100]
And leave everything else the same? Can I safely change the name and description?