Kalibriersoftware Stromwerte

Dependencies:   Matrix mbed

Committer:
Racer01014
Date:
Mon Nov 23 16:09:54 2015 +0000
Revision:
0:5e35c180ed4a
-

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Racer01014 0:5e35c180ed4a 1 /* Copyright (c) 2010-2011 mbed.org, MIT License
Racer01014 0:5e35c180ed4a 2 *
Racer01014 0:5e35c180ed4a 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Racer01014 0:5e35c180ed4a 4 * and associated documentation files (the "Software"), to deal in the Software without
Racer01014 0:5e35c180ed4a 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
Racer01014 0:5e35c180ed4a 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
Racer01014 0:5e35c180ed4a 7 * Software is furnished to do so, subject to the following conditions:
Racer01014 0:5e35c180ed4a 8 *
Racer01014 0:5e35c180ed4a 9 * The above copyright notice and this permission notice shall be included in all copies or
Racer01014 0:5e35c180ed4a 10 * substantial portions of the Software.
Racer01014 0:5e35c180ed4a 11 *
Racer01014 0:5e35c180ed4a 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Racer01014 0:5e35c180ed4a 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Racer01014 0:5e35c180ed4a 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Racer01014 0:5e35c180ed4a 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Racer01014 0:5e35c180ed4a 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Racer01014 0:5e35c180ed4a 17 */
Racer01014 0:5e35c180ed4a 18
Racer01014 0:5e35c180ed4a 19 #define NUMBER_OF_LOGICAL_ENDPOINTS (16)
Racer01014 0:5e35c180ed4a 20 #define NUMBER_OF_PHYSICAL_ENDPOINTS (NUMBER_OF_LOGICAL_ENDPOINTS * 2)
Racer01014 0:5e35c180ed4a 21
Racer01014 0:5e35c180ed4a 22 /* Define physical endpoint numbers */
Racer01014 0:5e35c180ed4a 23
Racer01014 0:5e35c180ed4a 24 /* Endpoint No. */
Racer01014 0:5e35c180ed4a 25 /* ---------------- */
Racer01014 0:5e35c180ed4a 26 #define EP0OUT (0)
Racer01014 0:5e35c180ed4a 27 #define EP0IN (1)
Racer01014 0:5e35c180ed4a 28 #define EP1OUT (2)
Racer01014 0:5e35c180ed4a 29 #define EP1IN (3)
Racer01014 0:5e35c180ed4a 30 #define EP2OUT (4)
Racer01014 0:5e35c180ed4a 31 #define EP2IN (5)
Racer01014 0:5e35c180ed4a 32 #define EP3OUT (6)
Racer01014 0:5e35c180ed4a 33 #define EP3IN (7)
Racer01014 0:5e35c180ed4a 34 #define EP4OUT (8)
Racer01014 0:5e35c180ed4a 35 #define EP4IN (9)
Racer01014 0:5e35c180ed4a 36 #define EP5OUT (10)
Racer01014 0:5e35c180ed4a 37 #define EP5IN (11)
Racer01014 0:5e35c180ed4a 38 #define EP6OUT (12)
Racer01014 0:5e35c180ed4a 39 #define EP6IN (13)
Racer01014 0:5e35c180ed4a 40 #define EP7OUT (14)
Racer01014 0:5e35c180ed4a 41 #define EP7IN (15)
Racer01014 0:5e35c180ed4a 42 #define EP8OUT (16)
Racer01014 0:5e35c180ed4a 43 #define EP8IN (17)
Racer01014 0:5e35c180ed4a 44 #define EP9OUT (18)
Racer01014 0:5e35c180ed4a 45 #define EP9IN (19)
Racer01014 0:5e35c180ed4a 46 #define EP10OUT (20)
Racer01014 0:5e35c180ed4a 47 #define EP10IN (21)
Racer01014 0:5e35c180ed4a 48 #define EP11OUT (22)
Racer01014 0:5e35c180ed4a 49 #define EP11IN (23)
Racer01014 0:5e35c180ed4a 50 #define EP12OUT (24)
Racer01014 0:5e35c180ed4a 51 #define EP12IN (25)
Racer01014 0:5e35c180ed4a 52 #define EP13OUT (26)
Racer01014 0:5e35c180ed4a 53 #define EP13IN (27)
Racer01014 0:5e35c180ed4a 54 #define EP14OUT (28)
Racer01014 0:5e35c180ed4a 55 #define EP14IN (29)
Racer01014 0:5e35c180ed4a 56 #define EP15OUT (30)
Racer01014 0:5e35c180ed4a 57 #define EP15IN (31)
Racer01014 0:5e35c180ed4a 58
Racer01014 0:5e35c180ed4a 59 /* Maximum Packet sizes */
Racer01014 0:5e35c180ed4a 60
Racer01014 0:5e35c180ed4a 61 #define MAX_PACKET_SIZE_EP0 (64)
Racer01014 0:5e35c180ed4a 62 #define MAX_PACKET_SIZE_EP1 (64)
Racer01014 0:5e35c180ed4a 63 #define MAX_PACKET_SIZE_EP2 (64)
Racer01014 0:5e35c180ed4a 64 #define MAX_PACKET_SIZE_EP3 (1023)
Racer01014 0:5e35c180ed4a 65 #define MAX_PACKET_SIZE_EP4 (64)
Racer01014 0:5e35c180ed4a 66 #define MAX_PACKET_SIZE_EP5 (64)
Racer01014 0:5e35c180ed4a 67 #define MAX_PACKET_SIZE_EP6 (64)
Racer01014 0:5e35c180ed4a 68 #define MAX_PACKET_SIZE_EP7 (64)
Racer01014 0:5e35c180ed4a 69 #define MAX_PACKET_SIZE_EP8 (64)
Racer01014 0:5e35c180ed4a 70 #define MAX_PACKET_SIZE_EP9 (64)
Racer01014 0:5e35c180ed4a 71 #define MAX_PACKET_SIZE_EP10 (64)
Racer01014 0:5e35c180ed4a 72 #define MAX_PACKET_SIZE_EP11 (64)
Racer01014 0:5e35c180ed4a 73 #define MAX_PACKET_SIZE_EP12 (64)
Racer01014 0:5e35c180ed4a 74 #define MAX_PACKET_SIZE_EP13 (64)
Racer01014 0:5e35c180ed4a 75 #define MAX_PACKET_SIZE_EP14 (64)
Racer01014 0:5e35c180ed4a 76 #define MAX_PACKET_SIZE_EP15 (64)
Racer01014 0:5e35c180ed4a 77
Racer01014 0:5e35c180ed4a 78 /* Generic endpoints - intended to be portable accross devices */
Racer01014 0:5e35c180ed4a 79 /* and be suitable for simple USB devices. */
Racer01014 0:5e35c180ed4a 80
Racer01014 0:5e35c180ed4a 81 /* Bulk endpoints */
Racer01014 0:5e35c180ed4a 82 #define EPBULK_OUT (EP2OUT)
Racer01014 0:5e35c180ed4a 83 #define EPBULK_IN (EP2IN)
Racer01014 0:5e35c180ed4a 84 /* Interrupt endpoints */
Racer01014 0:5e35c180ed4a 85 #define EPINT_OUT (EP1OUT)
Racer01014 0:5e35c180ed4a 86 #define EPINT_IN (EP1IN)
Racer01014 0:5e35c180ed4a 87 /* Isochronous endpoints */
Racer01014 0:5e35c180ed4a 88 #define EPISO_OUT (EP3OUT)
Racer01014 0:5e35c180ed4a 89 #define EPISO_IN (EP3IN)
Racer01014 0:5e35c180ed4a 90
Racer01014 0:5e35c180ed4a 91 #define MAX_PACKET_SIZE_EPBULK (MAX_PACKET_SIZE_EP2)
Racer01014 0:5e35c180ed4a 92 #define MAX_PACKET_SIZE_EPINT (MAX_PACKET_SIZE_EP1)
Racer01014 0:5e35c180ed4a 93 #define MAX_PACKET_SIZE_EPISO (MAX_PACKET_SIZE_EP3)