2014-05-03 23:27:38 +01:00
|
|
|
/*
|
2017-06-30 08:22:17 +01:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 23:27:38 +01:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-03-13 01:06:26 +00:00
|
|
|
// qstrs specific to this port
|
2020-02-26 00:58:42 +00:00
|
|
|
// *FORMAT-OFF*
|
2014-03-13 01:06:26 +00:00
|
|
|
|
|
|
|
// Entries for sys.path
|
2014-07-31 23:44:04 +01:00
|
|
|
Q(/flash)
|
|
|
|
Q(/flash/lib)
|
|
|
|
Q(/sd)
|
|
|
|
Q(/sd/lib)
|
2019-11-27 10:48:00 +00:00
|
|
|
|
2022-08-18 05:49:57 +01:00
|
|
|
// For os.sep
|
2019-11-27 10:48:00 +00:00
|
|
|
Q(/)
|
|
|
|
|
|
|
|
#if MICROPY_HW_ENABLE_USB
|
2015-08-30 22:20:38 +01:00
|
|
|
// for usb modes
|
2021-11-24 02:30:04 +00:00
|
|
|
Q(VCP)
|
|
|
|
Q(MSC)
|
2015-08-30 22:20:38 +01:00
|
|
|
Q(VCP+MSC)
|
|
|
|
Q(VCP+HID)
|
2021-11-24 02:30:04 +00:00
|
|
|
Q(VCP+MSC+HID)
|
|
|
|
#if MICROPY_HW_USB_CDC_NUM >= 2
|
|
|
|
Q(2xVCP)
|
|
|
|
Q(2xVCP+MSC)
|
|
|
|
Q(2xVCP+MSC+HID)
|
|
|
|
#endif
|
|
|
|
#if MICROPY_HW_USB_CDC_NUM >= 3
|
|
|
|
Q(3xVCP)
|
|
|
|
Q(3xVCP+MSC)
|
|
|
|
Q(3xVCP+MSC+HID)
|
|
|
|
#endif
|
2019-11-27 10:48:00 +00:00
|
|
|
#endif
|