X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=src%2Fao_product.c;h=54ba2a14e993b85017c0f203e22191e2f82e9bca;hp=f0eb4c07afc0e2286ced7324836d90da70d15060;hb=19bfa3882a2d95fcade256c2d63ad24f794281e5;hpb=295043112ccde35092945c286596f9045ee6fa05 diff --git a/src/ao_product.c b/src/ao_product.c index f0eb4c07..54ba2a14 100644 --- a/src/ao_product.c +++ b/src/ao_product.c @@ -16,7 +16,6 @@ */ #include "ao.h" -#include "ao_usb.h" #include PRODUCT_DEFS /* Defines which mark this particular AltOS product */ @@ -27,8 +26,10 @@ const char ao_product[] = AO_iProduct_STRING; #define LE_WORD(x) ((x)&0xFF),((uint8_t) (((uint16_t) (x))>>8)) +#if HAS_USB +#include "ao_usb.h" /* USB descriptors in one giant block of bytes */ -const uint8_t ao_usb_descriptors [] = +__code __at(0x00aa) uint8_t ao_usb_descriptors [] = { /* Device descriptor */ 0x12, @@ -151,3 +152,4 @@ const uint8_t ao_usb_descriptors [] = /* Terminating zero */ 0 }; +#endif