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 (5)
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. Type(s) MaxPacket DoubleBuffer */
Racer01014 0:5e35c180ed4a 25 /* ---------------- ------------ ---------- --- */
Racer01014 0:5e35c180ed4a 26 #define EP0OUT (0) /* Control 64 No */
Racer01014 0:5e35c180ed4a 27 #define EP0IN (1) /* Control 64 No */
Racer01014 0:5e35c180ed4a 28 #define EP1OUT (2) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 29 #define EP1IN (3) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 30 #define EP2OUT (4) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 31 #define EP2IN (5) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 32 #define EP3OUT (6) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 33 #define EP3IN (7) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 34 #define EP4OUT (8) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 35 #define EP4IN (9) /* Int/Bulk/Iso 64/64/1023 Yes */
Racer01014 0:5e35c180ed4a 36
Racer01014 0:5e35c180ed4a 37 /* Maximum Packet sizes */
Racer01014 0:5e35c180ed4a 38
Racer01014 0:5e35c180ed4a 39 #define MAX_PACKET_SIZE_EP0 (64)
Racer01014 0:5e35c180ed4a 40 #define MAX_PACKET_SIZE_EP1 (64) /* Int/Bulk */
Racer01014 0:5e35c180ed4a 41 #define MAX_PACKET_SIZE_EP2 (64) /* Int/Bulk */
Racer01014 0:5e35c180ed4a 42 #define MAX_PACKET_SIZE_EP3 (64) /* Int/Bulk */
Racer01014 0:5e35c180ed4a 43 #define MAX_PACKET_SIZE_EP4 (64) /* Int/Bulk */
Racer01014 0:5e35c180ed4a 44
Racer01014 0:5e35c180ed4a 45 #define MAX_PACKET_SIZE_EP1_ISO (1023) /* Isochronous */
Racer01014 0:5e35c180ed4a 46 #define MAX_PACKET_SIZE_EP2_ISO (1023) /* Isochronous */
Racer01014 0:5e35c180ed4a 47 #define MAX_PACKET_SIZE_EP3_ISO (1023) /* Isochronous */
Racer01014 0:5e35c180ed4a 48 #define MAX_PACKET_SIZE_EP4_ISO (1023) /* Isochronous */
Racer01014 0:5e35c180ed4a 49
Racer01014 0:5e35c180ed4a 50 /* Generic endpoints - intended to be portable accross devices */
Racer01014 0:5e35c180ed4a 51 /* and be suitable for simple USB devices. */
Racer01014 0:5e35c180ed4a 52
Racer01014 0:5e35c180ed4a 53 /* Bulk endpoint */
Racer01014 0:5e35c180ed4a 54 #define EPBULK_OUT (EP2OUT)
Racer01014 0:5e35c180ed4a 55 #define EPBULK_IN (EP2IN)
Racer01014 0:5e35c180ed4a 56 /* Interrupt endpoint */
Racer01014 0:5e35c180ed4a 57 #define EPINT_OUT (EP1OUT)
Racer01014 0:5e35c180ed4a 58 #define EPINT_IN (EP1IN)
Racer01014 0:5e35c180ed4a 59 /* Isochronous endpoint */
Racer01014 0:5e35c180ed4a 60 #define EPISO_OUT (EP3OUT)
Racer01014 0:5e35c180ed4a 61 #define EPISO_IN (EP3IN)
Racer01014 0:5e35c180ed4a 62
Racer01014 0:5e35c180ed4a 63 #define MAX_PACKET_SIZE_EPBULK (MAX_PACKET_SIZE_EP2)
Racer01014 0:5e35c180ed4a 64 #define MAX_PACKET_SIZE_EPINT (MAX_PACKET_SIZE_EP1)
Racer01014 0:5e35c180ed4a 65 #define MAX_PACKET_SIZE_EPISO (MAX_PACKET_SIZE_EP3_ISO)