diff options
author | Cástor Muñoz <cmvidal@gmail.com> | 2016-02-05 02:02:02 +0100 |
---|---|---|
committer | Cástor Muñoz <cmvidal@gmail.com> | 2017-02-09 20:47:16 +0100 |
commit | 882921efb64218e9b8cc3a7d9c7308734f9b12f3 (patch) | |
tree | fca2e1b77104419156a07c6b6d80fa7af9fa3969 /firmware/export/config/ipod6g.h | |
parent | 0d0b163dd15c35a427c8bb2bbd7b906afe9c491d (diff) | |
download | rockbox-882921efb64218e9b8cc3a7d9c7308734f9b12f3.tar.gz rockbox-882921efb64218e9b8cc3a7d9c7308734f9b12f3.tar.bz2 rockbox-882921efb64218e9b8cc3a7d9c7308734f9b12f3.zip |
ipod6g: bootloader v1bootloader_ipod6g_v1
- dual boot
- USB mode
- battery trap
Change-Id: I8586cfeb21ee63f45ab965430725225fdfc4212d
Diffstat (limited to 'firmware/export/config/ipod6g.h')
-rw-r--r-- | firmware/export/config/ipod6g.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/export/config/ipod6g.h b/firmware/export/config/ipod6g.h index 01934a0cc2..5494cf387a 100644 --- a/firmware/export/config/ipod6g.h +++ b/firmware/export/config/ipod6g.h @@ -248,14 +248,27 @@ #define USB_VENDOR_ID 0x05AC #define USB_PRODUCT_ID 0x1261 #define USB_DEVBSS_ATTR __attribute__((aligned(32))) +#define HAVE_BOOTLOADER_USB_MODE +#ifdef BOOTLOADER +#define USBPOWER_BTN_IGNORE (~0) +#endif #define USB_READ_BUFFER_SIZE (1024*24) +/* Serial */ +#ifdef BOOTLOADER +#if 0 /* Enable/disable LOGF_SERIAL for bootloader */ +#define HAVE_SERIAL +#define ROCKBOX_HAS_LOGF +#define LOGF_SERIAL +#endif +#else /* !BOOTLOADER */ #define HAVE_SERIAL /* Disable iAP when LOGF_SERIAL is enabled to avoid conflicts */ #ifndef LOGF_SERIAL #define IPOD_ACCESSORY_PROTOCOL #endif +#endif /* Define this if you can switch on/off the accessory power supply */ #define HAVE_ACCESSORY_SUPPLY |