2018-07-17 10:24:49 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 hathach for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SUPERVISOR_USB_H
|
|
|
|
#define MICROPY_INCLUDED_SUPERVISOR_USB_H
|
2018-07-17 10:24:49 -04:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
#include <stdbool.h>
|
2018-07-17 10:52:20 -04:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
// Ports must call this as frequently as they can in order to keep the USB connection
|
|
|
|
// alive and responsive.
|
|
|
|
void usb_background(void);
|
|
|
|
|
|
|
|
// Only inits the USB peripheral clocks and pins. The peripheral will be initialized by
|
|
|
|
// TinyUSB.
|
|
|
|
void init_usb_hardware(void);
|
|
|
|
|
|
|
|
// Shared implementation.
|
|
|
|
bool usb_enabled(void);
|
2018-07-17 10:24:49 -04:00
|
|
|
void usb_init(void);
|
|
|
|
|
2019-12-17 22:01:03 -05:00
|
|
|
// Propagate plug/unplug events to the MSC logic.
|
|
|
|
void usb_msc_mount(void);
|
|
|
|
void usb_msc_umount(void);
|
2020-02-09 06:25:16 -05:00
|
|
|
bool usb_msc_ejected(void);
|
2019-12-17 22:01:03 -05:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SUPERVISOR_USB_H
|