Subversion Repositories chibiosIgnition

Rev

Rev 19 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 19 Rev 22
Line 14... Line 14...
14
    limitations under the License.
14
    limitations under the License.
15
*/
15
*/
16
 
16
 
17
#include "hal.h"
17
#include "hal.h"
18
 
18
 
19
 
-
 
-
 
19
#if HAL_USE_USB == TRUE
20
 
20
 
21
/* Virtual serial port over USB.*/
21
/* Virtual serial port over USB.*/
22
SerialUSBDriver SDU1;
22
SerialUSBDriver SDU1;
23
 
23
 
24
#if HAL_USE_USB_DUAL_CDC == TRUE
24
#if HAL_USE_USB_DUAL_CDC == TRUE
Line 516... Line 516...
516
  USBD1_DATA2_REQUEST_EP,
516
  USBD1_DATA2_REQUEST_EP,
517
  USBD1_DATA2_AVAILABLE_EP,
517
  USBD1_DATA2_AVAILABLE_EP,
518
  USBD1_INTERRUPT2_REQUEST_EP
518
  USBD1_INTERRUPT2_REQUEST_EP
519
};
519
};
520
#endif
520
#endif
-
 
521
#endif