diff --git a/src/platforms/common/aux_serial.c b/src/platforms/common/aux_serial.c index 72fcb87..2a090b9 100644 --- a/src/platforms/common/aux_serial.c +++ b/src/platforms/common/aux_serial.c @@ -32,7 +32,7 @@ #include "usbuart.h" #include "usb.h" -void usbuart_set_line_coding(struct usb_cdc_line_coding *coding) +void aux_serial_set_encoding(struct usb_cdc_line_coding *coding) { usart_set_baudrate(USBUSART, coding->dwDTERate); diff --git a/src/platforms/common/usb_serial.c b/src/platforms/common/usb_serial.c index 21309cb..024678e 100644 --- a/src/platforms/common/usb_serial.c +++ b/src/platforms/common/usb_serial.c @@ -1,8 +1,10 @@ /* * This file is part of the Black Magic Debug project. * - * Copyright (C) 2011 Black Sphere Technologies Ltd. + * Copyright (C) 2011 Black Sphere Technologies Ltd. * Written by Gareth McMullin + * Copyright (C) 2022 1BitSquared + * Written by Rachel Mant * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -106,7 +108,7 @@ static enum usbd_request_return_codes debug_uart_control_request(usbd_device *de case USB_CDC_REQ_SET_LINE_CODING: if (*len < sizeof(struct usb_cdc_line_coding)) return USBD_REQ_NOTSUPP; - usbuart_set_line_coding((struct usb_cdc_line_coding *)*buf); + aux_serial_set_encoding((struct usb_cdc_line_coding *)*buf); return USBD_REQ_HANDLED; } return USBD_REQ_NOTSUPP; diff --git a/src/platforms/common/usbuart.h b/src/platforms/common/usbuart.h index 4b74d3c..97706dd 100644 --- a/src/platforms/common/usbuart.h +++ b/src/platforms/common/usbuart.h @@ -25,7 +25,7 @@ void aux_serial_init(void); -void usbuart_set_line_coding(struct usb_cdc_line_coding *coding); +void aux_serial_set_encoding(struct usb_cdc_line_coding *coding); void usbuart_usb_out_cb(usbd_device *dev, uint8_t ep); void usbuart_usb_in_cb(usbd_device *dev, uint8_t ep);