From: Antonio Ospite Date: Tue, 24 Jan 2012 14:45:00 +0000 (+0100) Subject: Document in_80chars() and remove reference_image_header[] X-Git-Tag: v0.1.0~16 X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/be42db29926b9089c68e6cc2834dddd0bffb5f11 Document in_80chars() and remove reference_image_header[] --- diff --git a/src/am7xxx.c b/src/am7xxx.c index 397dc97..3aedd7b 100644 --- a/src/am7xxx.c +++ b/src/am7xxx.c @@ -26,20 +26,6 @@ #define AM7XXX_VENDOR_ID 0x1de1 #define AM7XXX_PRODUCT_ID 0xc101 -#if 1 -static uint8_t reference_image_header[] = { - 0x02, 0x00, 0x00, 0x00, - 0x00, - 0x10, - 0x3e, - 0x10, - 0x01, 0x00, 0x00, 0x00, - 0x20, 0x03, 0x00, 0x00, - 0xe0, 0x01, 0x00, 0x00, - 0x53, 0xE8, 0x00, 0x00 -}; -#endif - static void dump_image_header(struct am7xxx_image_header *i) { if (i == NULL) @@ -78,6 +64,8 @@ static void dump_header(struct am7xxx_header *h) static inline unsigned int in_80chars(unsigned int i) { + /* The 3 below is the length of "xx " where xx is the hex string + * representation of a byte */ return ((i+1) % (80/3)); }