2017-05-02 18:25:06 -04:00
|
|
|
/*
|
2017-08-27 15:02:50 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2017-05-02 18:25:06 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Scott Shawcroft 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-18 20:57:54 -05:00
|
|
|
#include <stdarg.h>
|
2018-10-19 21:46:22 -04:00
|
|
|
#include <string.h>
|
2017-05-12 21:26:14 -04:00
|
|
|
|
2019-01-29 18:04:07 -05:00
|
|
|
#include "py/mpconfig.h"
|
|
|
|
|
2021-04-08 16:33:14 -04:00
|
|
|
#include "supervisor/shared/cpu.h"
|
2019-01-25 19:59:18 -05:00
|
|
|
#include "supervisor/shared/display.h"
|
|
|
|
#include "shared-bindings/terminalio/Terminal.h"
|
2018-10-19 21:46:22 -04:00
|
|
|
#include "supervisor/serial.h"
|
|
|
|
#include "supervisor/usb.h"
|
2020-05-18 08:04:55 -04:00
|
|
|
#include "shared-bindings/microcontroller/Pin.h"
|
2021-04-29 22:26:38 -04:00
|
|
|
#include "shared-module/usb_cdc/__init__.h"
|
2017-05-02 18:25:06 -04:00
|
|
|
|
2021-06-25 17:58:32 -04:00
|
|
|
#if CIRCUITPY_SERIAL_BLE
|
|
|
|
#include "supervisor/shared/bluetooth/serial.h"
|
|
|
|
#endif
|
|
|
|
|
2022-08-28 21:55:13 -04:00
|
|
|
#if CIRCUITPY_STATUS_BAR
|
|
|
|
#include "shared-bindings/supervisor/__init__.h"
|
|
|
|
#include "shared-bindings/supervisor/StatusBar.h"
|
|
|
|
#endif
|
|
|
|
|
2021-08-04 19:27:54 -04:00
|
|
|
#if CIRCUITPY_USB
|
2018-10-19 21:46:22 -04:00
|
|
|
#include "tusb.h"
|
2021-08-04 19:27:54 -04:00
|
|
|
#endif
|
2017-05-12 21:26:14 -04:00
|
|
|
|
2022-07-01 19:57:10 -04:00
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
#include "supervisor/shared/web_workflow/websocket.h"
|
|
|
|
#endif
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
2022-02-18 20:57:54 -05:00
|
|
|
#include "py/mpprint.h"
|
2020-05-18 08:04:55 -04:00
|
|
|
#include "shared-bindings/busio/UART.h"
|
2022-06-30 20:42:30 -04:00
|
|
|
|
|
|
|
busio_uart_obj_t console_uart;
|
|
|
|
// on Espressif, the receive buffer must be larger than the hardware FIFO length. See uart_driver_install().
|
|
|
|
#if defined(SOC_UART_FIFO_LEN)
|
|
|
|
byte console_uart_rx_buf[SOC_UART_FIFO_LEN + 1];
|
|
|
|
#else
|
|
|
|
byte console_uart_rx_buf[64];
|
|
|
|
#endif
|
2020-05-18 08:04:55 -04:00
|
|
|
#endif
|
|
|
|
|
2021-01-25 21:37:58 -05:00
|
|
|
#if CIRCUITPY_USB_VENDOR
|
|
|
|
bool tud_vendor_connected(void);
|
|
|
|
#endif
|
|
|
|
|
2022-09-25 00:00:37 -04:00
|
|
|
// Set to true to temporarily discard writes to the console only.
|
|
|
|
static bool _console_write_disabled;
|
|
|
|
|
|
|
|
// Set to true to temporarily discard writes to the display terminal only.
|
|
|
|
static bool _display_write_disabled;
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
|
|
|
STATIC void console_uart_print_strn(void *env, const char *str, size_t len) {
|
2022-02-18 20:57:54 -05:00
|
|
|
(void)env;
|
|
|
|
int uart_errcode;
|
2022-06-30 20:42:30 -04:00
|
|
|
common_hal_busio_uart_write(&console_uart, (const uint8_t *)str, len, &uart_errcode);
|
2022-02-18 20:57:54 -05:00
|
|
|
}
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
const mp_print_t console_uart_print = {NULL, console_uart_print_strn};
|
2022-02-18 20:57:54 -05:00
|
|
|
#endif
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
int console_uart_printf(const char *fmt, ...) {
|
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
|
|
|
// Skip prints that occur before console serial is started. It's better than
|
2022-03-08 20:55:21 -05:00
|
|
|
// crashing.
|
2022-06-30 20:42:30 -04:00
|
|
|
if (common_hal_busio_uart_deinited(&console_uart)) {
|
2022-03-08 20:55:21 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2022-02-18 20:57:54 -05:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2022-06-30 20:42:30 -04:00
|
|
|
int ret = mp_vprintf(&console_uart_print, fmt, ap);
|
2022-02-18 20:57:54 -05:00
|
|
|
va_end(ap);
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
MP_WEAK void port_serial_early_init(void) {
|
|
|
|
}
|
|
|
|
|
2022-03-22 22:40:33 -04:00
|
|
|
MP_WEAK void port_serial_init(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
MP_WEAK bool port_serial_connected(void) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MP_WEAK char port_serial_read(void) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
MP_WEAK bool port_serial_bytes_available(void) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MP_WEAK void port_serial_write_substring(const char *text, uint32_t length) {
|
|
|
|
(void)text;
|
|
|
|
(void)length;
|
|
|
|
}
|
|
|
|
|
2020-05-18 08:04:55 -04:00
|
|
|
void serial_early_init(void) {
|
2022-06-30 20:42:30 -04:00
|
|
|
// Set up console UART, if enabled.
|
2020-05-18 08:04:55 -04:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
|
|
|
console_uart.base.type = &busio_uart_type;
|
2022-02-18 20:57:54 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
const mcu_pin_obj_t *console_rx = MP_OBJ_TO_PTR(CIRCUITPY_CONSOLE_UART_RX);
|
|
|
|
const mcu_pin_obj_t *console_tx = MP_OBJ_TO_PTR(CIRCUITPY_CONSOLE_UART_TX);
|
2020-05-18 08:04:55 -04:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
common_hal_busio_uart_construct(&console_uart, console_tx, console_rx, NULL, NULL, NULL,
|
|
|
|
false, 115200, 8, BUSIO_UART_PARITY_NONE, 1, 1.0f, sizeof(console_uart_rx_buf),
|
|
|
|
console_uart_rx_buf, true);
|
|
|
|
common_hal_busio_uart_never_reset(&console_uart);
|
2022-02-18 20:57:54 -05:00
|
|
|
|
|
|
|
// Do an initial print so that we can confirm the serial output is working.
|
2022-06-30 20:42:30 -04:00
|
|
|
console_uart_printf("Serial console setup\r\n");
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2022-06-30 20:42:30 -04:00
|
|
|
|
|
|
|
port_serial_early_init();
|
2020-05-18 08:04:55 -04:00
|
|
|
}
|
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
void serial_init(void) {
|
2022-03-22 22:40:33 -04:00
|
|
|
port_serial_init();
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool serial_connected(void) {
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_USB_VENDOR
|
2021-01-25 21:37:58 -05:00
|
|
|
if (tud_vendor_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-01-25 21:37:58 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
2020-05-18 08:04:55 -04:00
|
|
|
return true;
|
2021-06-25 17:58:32 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_SERIAL_BLE
|
|
|
|
if (ble_serial_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_USB_CDC
|
|
|
|
if (usb_cdc_console_enabled() && tud_cdc_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-08 22:11:05 -04:00
|
|
|
#elif CIRCUITPY_USB
|
2021-06-25 17:58:32 -04:00
|
|
|
if (tud_cdc_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2022-03-22 22:40:33 -04:00
|
|
|
|
2022-07-01 19:57:10 -04:00
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
if (websocket_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2022-03-22 22:40:33 -04:00
|
|
|
if (port_serial_connected()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-06-25 17:58:32 -04:00
|
|
|
return false;
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
char serial_read(void) {
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_USB_VENDOR
|
2021-01-25 21:37:58 -05:00
|
|
|
if (tud_vendor_connected() && tud_vendor_available() > 0) {
|
|
|
|
char tiny_buffer;
|
|
|
|
tud_vendor_read(&tiny_buffer, 1);
|
|
|
|
return tiny_buffer;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-01-25 21:37:58 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
|
|
|
if (common_hal_busio_uart_rx_characters_available(&console_uart)) {
|
2021-07-08 22:11:05 -04:00
|
|
|
int uart_errcode;
|
|
|
|
char text;
|
2022-06-30 20:42:30 -04:00
|
|
|
common_hal_busio_uart_read(&console_uart, (uint8_t *)&text, 1, &uart_errcode);
|
2021-07-08 22:11:05 -04:00
|
|
|
return text;
|
2020-05-18 08:04:55 -04:00
|
|
|
}
|
2021-06-25 17:58:32 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_SERIAL_BLE
|
|
|
|
if (ble_serial_available() > 0) {
|
|
|
|
return ble_serial_read_char();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-07-01 19:57:10 -04:00
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
if (websocket_available()) {
|
2022-07-27 20:00:38 -04:00
|
|
|
char c = websocket_read_char();
|
|
|
|
if (c != -1) {
|
|
|
|
return c;
|
|
|
|
}
|
2022-07-01 19:57:10 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-07-27 20:00:38 -04:00
|
|
|
if (port_serial_bytes_available() > 0) {
|
|
|
|
return port_serial_read();
|
|
|
|
}
|
|
|
|
|
2021-06-25 17:58:32 -04:00
|
|
|
#if CIRCUITPY_USB_CDC
|
2021-05-03 22:22:29 -04:00
|
|
|
if (!usb_cdc_console_enabled()) {
|
2021-04-29 22:26:38 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-07-08 22:11:05 -04:00
|
|
|
#if CIRCUITPY_USB
|
2021-04-29 22:26:38 -04:00
|
|
|
return (char)tud_cdc_read_char();
|
2021-07-08 22:11:05 -04:00
|
|
|
#endif
|
2022-03-22 22:40:33 -04:00
|
|
|
|
2021-07-08 22:11:05 -04:00
|
|
|
return -1;
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool serial_bytes_available(void) {
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_USB_VENDOR
|
2021-01-25 21:37:58 -05:00
|
|
|
if (tud_vendor_connected() && tud_vendor_available() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-01-25 21:37:58 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
|
|
|
if (common_hal_busio_uart_rx_characters_available(&console_uart)) {
|
2021-06-25 17:58:32 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_SERIAL_BLE
|
|
|
|
if (ble_serial_available()) {
|
|
|
|
return true;
|
2021-04-29 22:26:38 -04:00
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-06-25 17:58:32 -04:00
|
|
|
|
2022-07-01 19:57:10 -04:00
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
if (websocket_available()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-06-25 17:58:32 -04:00
|
|
|
#if CIRCUITPY_USB_CDC
|
|
|
|
if (usb_cdc_console_enabled() && tud_cdc_available() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-08 22:11:05 -04:00
|
|
|
#endif
|
|
|
|
#if CIRCUITPY_USB
|
2021-06-25 17:58:32 -04:00
|
|
|
if (tud_cdc_available() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
2022-03-22 22:40:33 -04:00
|
|
|
|
|
|
|
if (port_serial_bytes_available() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-06-25 17:58:32 -04:00
|
|
|
return false;
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
2021-06-25 17:58:32 -04:00
|
|
|
|
2022-09-25 00:00:37 -04:00
|
|
|
#if CIRCUITPY_STATUS_BAR
|
|
|
|
// Detect when USB is down when the status bar write starts. If USB comes up in the middle of writing
|
|
|
|
// the status bar, we want to the skip the rest so so junk doesn't get written out.
|
|
|
|
static bool ignore_rest_of_status_bar_update = false;
|
|
|
|
#endif
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void serial_write_substring(const char *text, uint32_t length) {
|
2020-05-18 08:04:55 -04:00
|
|
|
if (length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2022-08-28 21:55:13 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_TERMINALIO
|
2019-01-25 19:59:18 -05:00
|
|
|
int errcode;
|
2022-08-28 21:55:13 -04:00
|
|
|
// If the status bar is disabled for the display, common_hal_terminalio_terminal_write() will not write it.
|
2021-03-15 09:57:36 -04:00
|
|
|
common_hal_terminalio_terminal_write(&supervisor_terminal, (const uint8_t *)text, length, &errcode);
|
|
|
|
#endif
|
2019-04-04 18:58:35 -04:00
|
|
|
|
2022-08-28 21:55:13 -04:00
|
|
|
#if CIRCUITPY_STATUS_BAR
|
|
|
|
// If the status bar is disabled for the console, skip writing out the OSC sequence.
|
2022-09-25 00:00:37 -04:00
|
|
|
if (supervisor_status_bar_get_update_in_progress(&shared_module_supervisor_status_bar_obj)) {
|
|
|
|
if (!shared_module_supervisor_status_bar_get_console(&shared_module_supervisor_status_bar_obj)) {
|
|
|
|
// Console status bar disabled, so just return.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Status bar update is not in progress, so clear this history flag (will get cleared repeatedly).
|
|
|
|
ignore_rest_of_status_bar_update = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ignore_rest_of_status_bar_update) {
|
2022-08-28 21:55:13 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_USB_VENDOR
|
2021-01-25 21:37:58 -05:00
|
|
|
if (tud_vendor_connected()) {
|
|
|
|
tud_vendor_write(text, length);
|
|
|
|
}
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2021-01-25 21:37:58 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#if CIRCUITPY_CONSOLE_UART
|
2021-06-25 17:58:32 -04:00
|
|
|
int uart_errcode;
|
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
common_hal_busio_uart_write(&console_uart, (const uint8_t *)text, length, &uart_errcode);
|
2021-06-25 17:58:32 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_SERIAL_BLE
|
|
|
|
ble_serial_write(text, length);
|
|
|
|
#endif
|
|
|
|
|
2022-07-01 19:57:10 -04:00
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
websocket_write(text, length);
|
|
|
|
#endif
|
|
|
|
|
2021-04-29 22:26:38 -04:00
|
|
|
#if CIRCUITPY_USB_CDC
|
2021-05-03 22:22:29 -04:00
|
|
|
if (!usb_cdc_console_enabled()) {
|
2021-04-29 22:26:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-07-08 22:11:05 -04:00
|
|
|
#if CIRCUITPY_USB
|
2018-11-09 19:41:08 -05:00
|
|
|
uint32_t count = 0;
|
2022-09-25 00:00:37 -04:00
|
|
|
if (tud_cdc_connected()) {
|
|
|
|
while (count < length) {
|
|
|
|
count += tud_cdc_write(text + count, length - count);
|
|
|
|
// If we're in an interrupt, then don't wait for more room. Queue up what we can.
|
|
|
|
if (cpu_interrupt_active()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
usb_background();
|
2021-04-08 16:33:14 -04:00
|
|
|
}
|
2018-11-09 19:41:08 -05:00
|
|
|
}
|
2022-09-25 00:00:37 -04:00
|
|
|
#if CIRCUITPY_STATUS_BAR
|
|
|
|
else {
|
|
|
|
// USB was not connected for the first part of the status bar update. Ignore the rest
|
|
|
|
// so we don't send the remaining part of the OSC sequence if USB comes up later.
|
|
|
|
ignore_rest_of_status_bar_update = true;
|
|
|
|
}
|
|
|
|
#endif
|
2021-07-08 22:11:05 -04:00
|
|
|
#endif
|
2022-03-22 22:40:33 -04:00
|
|
|
|
|
|
|
port_serial_write_substring(text, length);
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void serial_write(const char *text) {
|
2018-11-09 19:41:08 -05:00
|
|
|
serial_write_substring(text, strlen(text));
|
2018-10-19 21:46:22 -04:00
|
|
|
}
|
2022-09-25 00:00:37 -04:00
|
|
|
|
|
|
|
void serial_console_write_disable(bool disabled) {
|
|
|
|
_serial_console_write_disabled = disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serial_display_write_disable(bool disabled) {
|
|
|
|
_serial_display_write_disabled = disabled;
|
|
|
|
}
|