Merge pull request #11939 from blckmn/flash-fix
[betaflight.git] / src / main / drivers / usb_io.c
blob7a4bd3327c79671e3f426ac27837b48fbb1cc03d
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #include <stdbool.h>
22 #include <stdint.h>
24 #include "platform.h"
26 #ifdef USE_VCP
28 #include "drivers/io.h"
29 #include "drivers/time.h"
30 #include "usb_io.h"
31 #include "sdcard.h"
33 #ifdef USE_USB_DETECT
34 static IO_t usbDetectPin;
35 #endif
37 void usbCableDetectDeinit(void)
39 #ifdef USE_USB_DETECT
40 IOInit(usbDetectPin, OWNER_FREE, 0);
41 IOConfigGPIO(usbDetectPin, IOCFG_IN_FLOATING);
42 usbDetectPin = IO_NONE;
43 #endif
46 void usbCableDetectInit(void)
48 #ifdef USE_USB_DETECT
49 usbDetectPin = IOGetByTag(IO_TAG(USB_DETECT_PIN));
51 IOInit(usbDetectPin, OWNER_USB_DETECT, 0);
52 IOConfigGPIO(usbDetectPin, IOCFG_IPD);
53 #endif
56 bool usbCableIsInserted(void)
58 bool result = false;
60 #ifdef USE_USB_DETECT
61 if (usbDetectPin) {
62 result = IORead(usbDetectPin) != 0;
64 #endif
66 return result;
69 void usbGenerateDisconnectPulse(void)
71 /* Pull down PA12 to create USB disconnect pulse */
72 IO_t usbPin = IOGetByTag(IO_TAG(PA12));
73 IOConfigGPIO(usbPin, IOCFG_OUT_OD);
75 IOLo(usbPin);
77 delay(200);
79 IOHi(usbPin);
81 #endif