keyboard->mbed->PC (mbed->SDcard)
Fork of USBHost by
USBHostHub/USBHostHub.h@24:868cbfe611a7, 2014-06-03 (annotated)
- Committer:
- mbed_official
- Date:
- Tue Jun 03 11:30:38 2014 +0100
- Revision:
- 24:868cbfe611a7
- Parent:
- 8:93da8ea2708b
- Child:
- 37:f1e388e7b752
Synchronized with git revision bcacbb9fbf3432829227430830cca4315b57c1b9
Full URL: https://github.com/mbedmicro/mbed/commit/bcacbb9fbf3432829227430830cca4315b57c1b9/
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
samux | 8:93da8ea2708b | 1 | /* mbed USBHost Library |
samux | 8:93da8ea2708b | 2 | * Copyright (c) 2006-2013 ARM Limited |
samux | 8:93da8ea2708b | 3 | * |
samux | 8:93da8ea2708b | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
samux | 8:93da8ea2708b | 5 | * you may not use this file except in compliance with the License. |
samux | 8:93da8ea2708b | 6 | * You may obtain a copy of the License at |
samux | 8:93da8ea2708b | 7 | * |
samux | 8:93da8ea2708b | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
samux | 8:93da8ea2708b | 9 | * |
samux | 8:93da8ea2708b | 10 | * Unless required by applicable law or agreed to in writing, software |
samux | 8:93da8ea2708b | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
samux | 8:93da8ea2708b | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
samux | 8:93da8ea2708b | 13 | * See the License for the specific language governing permissions and |
samux | 8:93da8ea2708b | 14 | * limitations under the License. |
samux | 8:93da8ea2708b | 15 | */ |
mbed_official | 0:a554658735bf | 16 | |
mbed_official | 0:a554658735bf | 17 | #ifndef USBHOSTHUB_H |
mbed_official | 0:a554658735bf | 18 | #define USBHOSTHUB_H |
mbed_official | 0:a554658735bf | 19 | |
mbed_official | 0:a554658735bf | 20 | #include "USBHostConf.h" |
mbed_official | 0:a554658735bf | 21 | |
mbed_official | 0:a554658735bf | 22 | #if MAX_HUB_NB |
mbed_official | 0:a554658735bf | 23 | |
mbed_official | 0:a554658735bf | 24 | #include "USBHostTypes.h" |
mbed_official | 0:a554658735bf | 25 | #include "IUSBEnumerator.h" |
mbed_official | 0:a554658735bf | 26 | |
mbed_official | 0:a554658735bf | 27 | class USBHost; |
mbed_official | 0:a554658735bf | 28 | class USBDeviceConnected; |
mbed_official | 0:a554658735bf | 29 | class USBEndpoint; |
mbed_official | 0:a554658735bf | 30 | |
mbed_official | 24:868cbfe611a7 | 31 | /** |
mbed_official | 0:a554658735bf | 32 | * A class to use a USB Hub |
mbed_official | 0:a554658735bf | 33 | */ |
mbed_official | 0:a554658735bf | 34 | class USBHostHub : public IUSBEnumerator { |
mbed_official | 0:a554658735bf | 35 | public: |
mbed_official | 0:a554658735bf | 36 | /** |
mbed_official | 0:a554658735bf | 37 | * Constructor |
mbed_official | 0:a554658735bf | 38 | */ |
mbed_official | 0:a554658735bf | 39 | USBHostHub(); |
mbed_official | 0:a554658735bf | 40 | |
mbed_official | 0:a554658735bf | 41 | /** |
mbed_official | 0:a554658735bf | 42 | * Check if a USB Hub is connected |
mbed_official | 0:a554658735bf | 43 | * |
mbed_official | 0:a554658735bf | 44 | * @return true if a serial device is connected |
mbed_official | 0:a554658735bf | 45 | */ |
mbed_official | 0:a554658735bf | 46 | bool connected(); |
mbed_official | 0:a554658735bf | 47 | |
mbed_official | 0:a554658735bf | 48 | /** |
mbed_official | 0:a554658735bf | 49 | * Try to connect device |
mbed_official | 0:a554658735bf | 50 | * |
mbed_official | 0:a554658735bf | 51 | * @param dev device to connect |
mbed_official | 0:a554658735bf | 52 | * @return true if connection was successful |
mbed_official | 0:a554658735bf | 53 | */ |
mbed_official | 0:a554658735bf | 54 | bool connect(USBDeviceConnected * dev); |
mbed_official | 24:868cbfe611a7 | 55 | |
mbed_official | 0:a554658735bf | 56 | /** |
mbed_official | 0:a554658735bf | 57 | * Automatically called by USBHost when a device |
mbed_official | 0:a554658735bf | 58 | * has been enumerated by usb_thread |
mbed_official | 0:a554658735bf | 59 | * |
mbed_official | 0:a554658735bf | 60 | * @param dev device connected |
mbed_official | 0:a554658735bf | 61 | */ |
mbed_official | 0:a554658735bf | 62 | void deviceConnected(USBDeviceConnected * dev); |
mbed_official | 24:868cbfe611a7 | 63 | |
mbed_official | 0:a554658735bf | 64 | /** |
mbed_official | 0:a554658735bf | 65 | * Automatically called by USBHost when a device |
mbed_official | 0:a554658735bf | 66 | * has been disconnected from this hub |
mbed_official | 0:a554658735bf | 67 | * |
samux | 3:0f5c32575eb8 | 68 | * @param dev device disconnected |
mbed_official | 0:a554658735bf | 69 | */ |
mbed_official | 0:a554658735bf | 70 | void deviceDisconnected(USBDeviceConnected * dev); |
mbed_official | 24:868cbfe611a7 | 71 | |
mbed_official | 0:a554658735bf | 72 | /** |
mbed_official | 0:a554658735bf | 73 | * Rest a specific port |
mbed_official | 0:a554658735bf | 74 | * |
mbed_official | 0:a554658735bf | 75 | * @param port port number |
mbed_official | 0:a554658735bf | 76 | */ |
mbed_official | 0:a554658735bf | 77 | void portReset(uint8_t port); |
mbed_official | 24:868cbfe611a7 | 78 | |
mbed_official | 0:a554658735bf | 79 | /* |
mbed_official | 0:a554658735bf | 80 | * Called by USBHost to set the instance of USBHost |
mbed_official | 0:a554658735bf | 81 | * |
mbed_official | 0:a554658735bf | 82 | * @param host host instance |
mbed_official | 0:a554658735bf | 83 | */ |
mbed_official | 0:a554658735bf | 84 | void setHost(USBHost * host); |
mbed_official | 24:868cbfe611a7 | 85 | |
mbed_official | 0:a554658735bf | 86 | /** |
mbed_official | 0:a554658735bf | 87 | * Called by USBhost when a hub has been disconnected |
mbed_official | 0:a554658735bf | 88 | */ |
mbed_official | 0:a554658735bf | 89 | void hubDisconnected(); |
mbed_official | 0:a554658735bf | 90 | |
mbed_official | 0:a554658735bf | 91 | protected: |
mbed_official | 0:a554658735bf | 92 | //From IUSBEnumerator |
mbed_official | 0:a554658735bf | 93 | virtual void setVidPid(uint16_t vid, uint16_t pid); |
mbed_official | 0:a554658735bf | 94 | virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol); //Must return true if the interface should be parsed |
mbed_official | 0:a554658735bf | 95 | virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir); //Must return true if the endpoint will be used |
mbed_official | 0:a554658735bf | 96 | |
mbed_official | 0:a554658735bf | 97 | private: |
mbed_official | 0:a554658735bf | 98 | USBHost * host; |
mbed_official | 0:a554658735bf | 99 | USBDeviceConnected * dev; |
mbed_official | 0:a554658735bf | 100 | bool dev_connected; |
mbed_official | 0:a554658735bf | 101 | USBEndpoint * int_in; |
mbed_official | 0:a554658735bf | 102 | uint8_t nb_port; |
mbed_official | 0:a554658735bf | 103 | uint8_t hub_characteristics; |
mbed_official | 0:a554658735bf | 104 | |
mbed_official | 0:a554658735bf | 105 | void rxHandler(); |
mbed_official | 0:a554658735bf | 106 | |
mbed_official | 0:a554658735bf | 107 | uint8_t buf[sizeof(HubDescriptor)]; |
mbed_official | 0:a554658735bf | 108 | |
mbed_official | 0:a554658735bf | 109 | int hub_intf; |
mbed_official | 0:a554658735bf | 110 | bool hub_device_found; |
mbed_official | 0:a554658735bf | 111 | |
mbed_official | 0:a554658735bf | 112 | void setPortFeature(uint32_t feature, uint8_t port); |
mbed_official | 0:a554658735bf | 113 | void clearPortFeature(uint32_t feature, uint8_t port); |
mbed_official | 0:a554658735bf | 114 | uint32_t getPortStatus(uint8_t port); |
mbed_official | 0:a554658735bf | 115 | |
mbed_official | 0:a554658735bf | 116 | USBDeviceConnected * device_children[MAX_HUB_PORT]; |
mbed_official | 24:868cbfe611a7 | 117 | |
mbed_official | 0:a554658735bf | 118 | void init(); |
mbed_official | 0:a554658735bf | 119 | void disconnect(); |
mbed_official | 0:a554658735bf | 120 | |
mbed_official | 0:a554658735bf | 121 | }; |
mbed_official | 0:a554658735bf | 122 | |
mbed_official | 0:a554658735bf | 123 | #endif |
mbed_official | 0:a554658735bf | 124 | |
mbed_official | 0:a554658735bf | 125 | #endif |