diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2021-02-19 18:34:03 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-19 18:34:03 -0800 |
| commit | 7b6f89a074feb849e03287e2fa3f39eb4b04e6ee (patch) | |
| tree | dbe916f5c070b3724d1c5ad5232be8fe8493242f /shared-module/usb_cdc/Serial.h | |
| parent | 220f86f873f8d8e2d00a82672470ef40fc68e147 (diff) | |
| parent | 985e02093690d835ef5adf8d253e1f0405d86538 (diff) | |
Merge pull request #4215 from dhalbert/secondary-cdc
Second USB CDC (serial) channel
Diffstat (limited to 'shared-module/usb_cdc/Serial.h')
| -rw-r--r-- | shared-module/usb_cdc/Serial.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/shared-module/usb_cdc/Serial.h b/shared-module/usb_cdc/Serial.h new file mode 100644 index 000000000..ddf78eefa --- /dev/null +++ b/shared-module/usb_cdc/Serial.h @@ -0,0 +1,39 @@ +/* + * This file is part of the MicroPython project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright (c) 2021 Dan Halbert 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. + */ + +#ifndef SHARED_MODULE_USB_CDC_SERIAL_H +#define SHARED_MODULE_USB_CDC_SERIAL_H + +#include "py/obj.h" + +typedef struct { + mp_obj_base_t base; + mp_float_t timeout; // if negative, wait forever. + mp_float_t write_timeout; // if negative, wait forever. + uint8_t idx; // which CDC device? +} usb_cdc_serial_obj_t; + +#endif // SHARED_MODULE_USB_CDC_SERIAL_H |
