Axeda Corp / Mbed 2 deprecated AxedaGo-Freescal_FRDM-KL46Z revert

Dependencies:   FRDM_MMA8451Q KL46Z-USBHost MAG3110 SocketModem TSI mbed FATFileSystem

Fork of AxedaGo-Freescal_FRDM-KL46Z revert by Axeda Corp

Committer:
AxedaCorp
Date:
Tue Jul 01 21:31:54 2014 +0000
Revision:
0:65004368569c
Made initial

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AxedaCorp 0:65004368569c 1 /* mbed USBHost Library
AxedaCorp 0:65004368569c 2 * Copyright (c) 2006-2013 ARM Limited
AxedaCorp 0:65004368569c 3 *
AxedaCorp 0:65004368569c 4 * Licensed under the Apache License, Version 2.0 (the "License");
AxedaCorp 0:65004368569c 5 * you may not use this file except in compliance with the License.
AxedaCorp 0:65004368569c 6 * You may obtain a copy of the License at
AxedaCorp 0:65004368569c 7 *
AxedaCorp 0:65004368569c 8 * http://www.apache.org/licenses/LICENSE-2.0
AxedaCorp 0:65004368569c 9 *
AxedaCorp 0:65004368569c 10 * Unless required by applicable law or agreed to in writing, software
AxedaCorp 0:65004368569c 11 * distributed under the License is distributed on an "AS IS" BASIS,
AxedaCorp 0:65004368569c 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AxedaCorp 0:65004368569c 13 * See the License for the specific language governing permissions and
AxedaCorp 0:65004368569c 14 * limitations under the License.
AxedaCorp 0:65004368569c 15 */
AxedaCorp 0:65004368569c 16
AxedaCorp 0:65004368569c 17 #ifndef IUSBENUMERATOR_H_
AxedaCorp 0:65004368569c 18 #define IUSBENUMERATOR_H_
AxedaCorp 0:65004368569c 19
AxedaCorp 0:65004368569c 20 #include "stdint.h"
AxedaCorp 0:65004368569c 21 #include "USBEndpoint.h"
AxedaCorp 0:65004368569c 22
AxedaCorp 0:65004368569c 23 /*
AxedaCorp 0:65004368569c 24 Generic interface to implement for "smart" USB enumeration
AxedaCorp 0:65004368569c 25 */
AxedaCorp 0:65004368569c 26
AxedaCorp 0:65004368569c 27 class IUSBEnumerator
AxedaCorp 0:65004368569c 28 {
AxedaCorp 0:65004368569c 29 public:
AxedaCorp 0:65004368569c 30 virtual void setVidPid(uint16_t vid, uint16_t pid) = 0;
AxedaCorp 0:65004368569c 31 virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol) = 0; //Must return true if the interface should be parsed
AxedaCorp 0:65004368569c 32 virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir) = 0; //Must return true if the endpoint will be used
AxedaCorp 0:65004368569c 33 };
AxedaCorp 0:65004368569c 34
AxedaCorp 0:65004368569c 35 #endif /*IUSBENUMERATOR_H_*/
AxedaCorp 0:65004368569c 36