Drei Extraleben, x 0 auch noch spielbar. Anzeigeschirm besser formatiert.
[hackover2013-badge-firmware.git] / core / usbcdc / config.h
1 /*****************************************************************************
2 * config.h: config file for usbcdc example for NXP LPC13xx Family
3 * Microprocessors
4 *
5 * Copyright(C) 2008, NXP Semiconductor
6 * All rights reserved.
7 *
8 * History
9 * 2008.07.19 ver 1.00 Preliminary version, first Release
10 *
11 ******************************************************************************/
12
13 /*
14 Overview:
15 This example shows how to use the USB driver to implement a CDC class USB peripheral.
16 To run this example, you must attach a USB cable to the board. See
17 the "Getting Started Guide" appendix for details.
18
19 How to use:
20 Click the debug toolbar button.
21 Click the go button.
22 Plug the LPCXpresso's target side into a PC using a USB cable retrofit
23 or a 3rd party base board.
24
25 * You should be able to see a new COM port on your PC.
26 */
27
28 #include "projectconfig.h"
29
30 #define USB_VENDOR_ID CFG_USB_VID // Vendor ID
31 #define USB_PROD_ID CFG_USB_PID // Product ID
32 #define USB_DEVICE 0x0100 // Device ID
33
34 #define LED_PORT 0 // Port for led
35 #define LED_BIT 7 // Bit on port for led
36
37
38 /*********************************************************************************
39 ** End Of File
40 *********************************************************************************/
This page took 0.062536 seconds and 5 git commands to generate.