Działająca myszka

Fork of USBDevice by mbed official

Committer:
mbed_official
Date:
Mon Apr 20 10:45:54 2015 +0100
Revision:
51:a3c50882f2c5
Parent:
48:a0cd9646ecd1
Synchronized with git revision 016b9ad9cba789b99acee1102802355338120b29

Full URL: https://github.com/mbedmicro/mbed/commit/016b9ad9cba789b99acee1102802355338120b29/

NXP's HAL - Fix PwmOut period using SCT

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 35:a8484e16c2f3 1 /* Copyright (c) 2010-2011 mbed.org, MIT License
mbed_official 35:a8484e16c2f3 2 *
mbed_official 35:a8484e16c2f3 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
mbed_official 35:a8484e16c2f3 4 * and associated documentation files (the "Software"), to deal in the Software without
mbed_official 35:a8484e16c2f3 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
mbed_official 35:a8484e16c2f3 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
mbed_official 35:a8484e16c2f3 7 * Software is furnished to do so, subject to the following conditions:
mbed_official 35:a8484e16c2f3 8 *
mbed_official 35:a8484e16c2f3 9 * The above copyright notice and this permission notice shall be included in all copies or
mbed_official 35:a8484e16c2f3 10 * substantial portions of the Software.
mbed_official 35:a8484e16c2f3 11 *
mbed_official 35:a8484e16c2f3 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
mbed_official 35:a8484e16c2f3 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
mbed_official 35:a8484e16c2f3 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
mbed_official 35:a8484e16c2f3 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbed_official 35:a8484e16c2f3 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
mbed_official 35:a8484e16c2f3 17 */
mbed_official 35:a8484e16c2f3 18
mbed_official 35:a8484e16c2f3 19 #define NUMBER_OF_LOGICAL_ENDPOINTS (16)
mbed_official 35:a8484e16c2f3 20 #define NUMBER_OF_PHYSICAL_ENDPOINTS (NUMBER_OF_LOGICAL_ENDPOINTS * 2)
mbed_official 35:a8484e16c2f3 21
mbed_official 35:a8484e16c2f3 22 /* Define physical endpoint numbers */
mbed_official 35:a8484e16c2f3 23
mbed_official 35:a8484e16c2f3 24 /* Endpoint No. Type(s) MaxSiz DoubleBuf pipe */
mbed_official 35:a8484e16c2f3 25 /* ---------------- --------- ------ --------- ---- */
mbed_official 35:a8484e16c2f3 26 #define EP0OUT (0) /* Control 256 No 0 */
mbed_official 35:a8484e16c2f3 27 #define EP0IN (1) /* Control 256 No 0 */
mbed_official 35:a8484e16c2f3 28 #define EP1OUT (2) /* Int 64 No 6 */
mbed_official 35:a8484e16c2f3 29 #define EP1IN (3) /* Int 64 No 7 */
mbed_official 35:a8484e16c2f3 30 #define EP2OUT (4) /* Bulk 2048 Yes 3 */
mbed_official 35:a8484e16c2f3 31 #define EP2IN (5) /* Bulk 2048 Yes 4 */
mbed_official 35:a8484e16c2f3 32 #define EP3OUT (6) /* Bulk/Iso 2048 Yes 1 */
mbed_official 35:a8484e16c2f3 33 #define EP3IN (7) /* Bulk/Iso 2048 Yes 2 */
mbed_official 35:a8484e16c2f3 34 /*following EP is not configured in sample program*/
mbed_official 35:a8484e16c2f3 35 #define EP6IN (8) /* Bulk 2048 Yes 5 */
mbed_official 35:a8484e16c2f3 36 #define EP8IN (9) /* Int 64 No 8 */
mbed_official 35:a8484e16c2f3 37 #define EP9IN (10) /* Bulk 512 Bulk 9 */
mbed_official 35:a8484e16c2f3 38 #define EP10IN (11) /* Int/Bulk 2048 Bulk 10 */
mbed_official 35:a8484e16c2f3 39 #define EP11IN (12) /* Bulk 2048 Yes 11 */
mbed_official 35:a8484e16c2f3 40 #define EP12IN (13) /* Bulk 2048 Yes 12 */
mbed_official 35:a8484e16c2f3 41 #define EP13IN (14) /* Bulk 2048 Yes 13 */
mbed_official 35:a8484e16c2f3 42 #define EP14IN (15) /* Bulk 2048 Yes 14 */
mbed_official 35:a8484e16c2f3 43 #define EP15IN (16) /* Bulk 2048 Yes 15 */
mbed_official 35:a8484e16c2f3 44
mbed_official 35:a8484e16c2f3 45 /* Maximum Packet sizes */
mbed_official 35:a8484e16c2f3 46 #define MAX_PACKET_SIZE_EP0 (64) /*pipe0/pipe0: control */
mbed_official 35:a8484e16c2f3 47 #define MAX_PACKET_SIZE_EP1 (64) /*pipe6/pipe7: interrupt */
mbed_official 35:a8484e16c2f3 48 #define MAX_PACKET_SIZE_EP2 (512) /*pipe3/pipe4: bulk */
mbed_official 35:a8484e16c2f3 49 #define MAX_PACKET_SIZE_EP3 (512) /*pipe1/pipe2: isochronous */
mbed_official 35:a8484e16c2f3 50 #define MAX_PACKET_SIZE_EP6 (64) /*pipe5: Note *1 */
mbed_official 35:a8484e16c2f3 51 #define MAX_PACKET_SIZE_EP8 (64) /*pipe7: Note *1 */
mbed_official 35:a8484e16c2f3 52 #define MAX_PACKET_SIZE_EP9 (512) /*pipe8: Note *1 */
mbed_official 35:a8484e16c2f3 53 #define MAX_PACKET_SIZE_EP10 (512) /*pipe9: Note *1 */
mbed_official 35:a8484e16c2f3 54 #define MAX_PACKET_SIZE_EP11 (512) /*pipe10: Note *1 */
mbed_official 35:a8484e16c2f3 55 #define MAX_PACKET_SIZE_EP12 (512) /*pipe11: Note *1 */
mbed_official 35:a8484e16c2f3 56 #define MAX_PACKET_SIZE_EP13 (512) /*pipe12: Note *1 */
mbed_official 35:a8484e16c2f3 57 #define MAX_PACKET_SIZE_EP14 (512) /*pipe13: Note *1 */
mbed_official 35:a8484e16c2f3 58 #define MAX_PACKET_SIZE_EP15 (512) /*pipe14: Note *1 */
mbed_official 35:a8484e16c2f3 59 /* Note *1: This pipe is not configure in sample program */
mbed_official 35:a8484e16c2f3 60
mbed_official 35:a8484e16c2f3 61
mbed_official 35:a8484e16c2f3 62 /* Generic endpoints - intended to be portable accross devices */
mbed_official 35:a8484e16c2f3 63 /* and be suitable for simple USB devices. */
mbed_official 35:a8484e16c2f3 64
mbed_official 35:a8484e16c2f3 65 /* Bulk endpoints */
mbed_official 35:a8484e16c2f3 66 #define EPBULK_OUT (EP2OUT)
mbed_official 35:a8484e16c2f3 67 #define EPBULK_IN (EP2IN)
mbed_official 48:a0cd9646ecd1 68 #define EPBULK_OUT_callback EP2_OUT_callback
mbed_official 48:a0cd9646ecd1 69 #define EPBULK_IN_callback EP2_IN_callback
mbed_official 35:a8484e16c2f3 70 /* Interrupt endpoints */
mbed_official 35:a8484e16c2f3 71 #define EPINT_OUT (EP1OUT)
mbed_official 35:a8484e16c2f3 72 #define EPINT_IN (EP1IN)
mbed_official 48:a0cd9646ecd1 73 #define EPINT_OUT_callback EP1_OUT_callback
mbed_official 48:a0cd9646ecd1 74 #define EPINT_IN_callback EP1_IN_callback
mbed_official 35:a8484e16c2f3 75 /* Isochronous endpoints */
mbed_official 35:a8484e16c2f3 76 #define EPISO_OUT (EP3OUT)
mbed_official 35:a8484e16c2f3 77 #define EPISO_IN (EP3IN)
mbed_official 48:a0cd9646ecd1 78 #define EPISO_OUT_callback EP3_OUT_callback
mbed_official 48:a0cd9646ecd1 79 #define EPISO_IN_callback EP3_IN_callback
mbed_official 35:a8484e16c2f3 80
mbed_official 35:a8484e16c2f3 81 #define MAX_PACKET_SIZE_EPBULK (MAX_PACKET_SIZE_EP2)
mbed_official 35:a8484e16c2f3 82 #define MAX_PACKET_SIZE_EPINT (MAX_PACKET_SIZE_EP1)
mbed_official 35:a8484e16c2f3 83 #define MAX_PACKET_SIZE_EPISO (MAX_PACKET_SIZE_EP3)
mbed_official 35:a8484e16c2f3 84
mbed_official 35:a8484e16c2f3 85 /*EOF*/