From 6d12109ef7d1293810ffa3696f4dc66bcafb557b Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Mon, 5 May 2008 15:22:43 +0000 Subject: Clear out confusion about UTF8<->ANSI in tools/creative.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17385 a1c6a512-1295-4272-9138-f99709370657 --- tools/creative.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools') diff --git a/tools/creative.c b/tools/creative.c index 2d54630595..7aa81913dd 100644 --- a/tools/creative.c +++ b/tools/creative.c @@ -49,10 +49,16 @@ static const unsigned char bootloader_v3[] = static const struct device_info devices[] = { + /* Creative Zen Vision:M */ {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M", 42, null_key_v2, bootloader_v1, sizeof(bootloader_v1), 0x00900000}, + /* Creative Zen Vision:M Go! */ {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M\0 \0G\0o\0!", 50, null_key_v2, bootloader_v1, sizeof(bootloader_v1), 0x00900000}, + /* Creative Zen Vision © TL */ + /* The "©" should be ANSI encoded or the device won't accept the firmware package. */ {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0 \0©\0T\0L", 48, null_key_v2, bootloader_v1, sizeof(bootloader_v1), 0x00900000}, + /* Creative ZEN V */ {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0E\0N\0 \0V", 42, null_key_v4, bootloader_v3, sizeof(bootloader_v3), 0x00000000}, + /* Creative ZEN */ {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0E\0N", 48, null_key_v3, bootloader_v2, sizeof(bootloader_v2), 0x40000000} }; -- cgit