Skip to content

Commit

Permalink
except that one can't be final
Browse files Browse the repository at this point in the history
  • Loading branch information
mck1117 committed Mar 1, 2024
1 parent a85e6c7 commit dba95f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/console/binary/tunerstudio_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class SerialTsChannel final : public SerialTsChannelBase {

#if HAL_USE_UART
// This class implements a ChibiOS UART Driver
class UartTsChannel final : public SerialTsChannelBase {
class UartTsChannel : public SerialTsChannelBase {
public:
UartTsChannel(UARTDriver& driver) : SerialTsChannelBase("UART"), m_driver(&driver) { }

Expand Down
2 changes: 1 addition & 1 deletion firmware/console/connector_uart_dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// This must be a power of 2!
#define TS_DMA_BUFFER_SIZE 32

class UartDmaTsChannel : public UartTsChannel {
class UartDmaTsChannel final : public UartTsChannel {
public:
UartDmaTsChannel(UARTDriver& uartDriver);

Expand Down

0 comments on commit dba95f5

Please sign in to comment.