/**************************************************************************************** | Description: bootloader USB device configuration header file | File Name: usb_conf.h | Notes: based on an example from STMicroelectronics | |---------------------------------------------------------------------------------------- | C O P Y R I G H T |---------------------------------------------------------------------------------------- | Copyright (c) 2011 by Feaser http://www.feaser.com All rights reserved | |---------------------------------------------------------------------------------------- | L I C E N S E |---------------------------------------------------------------------------------------- | This file is part of OpenBLT. OpenBLT is free software: you can redistribute it and/or | modify it under the terms of the GNU General Public License as published by the Free | Software Foundation, either version 3 of the License, or (at your option) any later | version. | | OpenBLT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | PURPOSE. See the GNU General Public License for more details. | | You should have received a copy of the GNU General Public License along with OpenBLT. | If not, see . | | A special exception to the GPL is included to allow you to distribute a combined work | that includes OpenBLT without being obliged to provide the source code for any | proprietary components. The exception text is included at the bottom of the license | file . | ****************************************************************************************/ #ifndef USB_CONF_H #define USB_CONF_H /**************************************************************************************** * Macro definitions ****************************************************************************************/ #define EP_NUM (3) /* buffer table base address */ #define BTABLE_ADDRESS (0x00) /* EP0 rx/tx buffer base address */ #define ENDP0_RXADDR (0x40) #define ENDP0_TXADDR (0x80) /* EP1 rx/tx buffer base address */ #define ENDP1_RXADDR (0xC0) #define ENDP1_TXADDR (0x100) /* mask defining which events has to be handled by the device application software */ #define IMR_MSK (CNTR_CTRM | CNTR_SOFM | CNTR_RESETM ) /* enable start of frame callback */ #define SOF_CALLBACK /* CTR service routines associated to defined endpoints. keep EP1_IN and EP1_OUT * callback uncommented to enable them. They are implemented in usb_endp.c */ /*#define EP1_IN_Callback NOP_Process*/ #define EP2_IN_Callback NOP_Process #define EP3_IN_Callback NOP_Process #define EP4_IN_Callback NOP_Process #define EP5_IN_Callback NOP_Process #define EP6_IN_Callback NOP_Process #define EP7_IN_Callback NOP_Process /*#define EP1_OUT_Callback NOP_Process*/ #define EP2_OUT_Callback NOP_Process #define EP3_OUT_Callback NOP_Process #define EP4_OUT_Callback NOP_Process #define EP5_OUT_Callback NOP_Process #define EP6_OUT_Callback NOP_Process #define EP7_OUT_Callback NOP_Process #endif /* USB_CONF_H */ /*********************************** end of usb_conf.h *********************************/