From 1b2bbd163b7cc34e1c61c6f8961495d69e519f9c Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Thu, 2 Apr 2020 22:48:01 -0400 Subject: [PATCH] [ion/device] Rename a file --- ion/src/device/shared/drivers/Makefile | 2 +- ion/src/device/shared/drivers/{console.cpp => console_uart.cpp} | 0 ion/src/device/shared/usb/Makefile | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename ion/src/device/shared/drivers/{console.cpp => console_uart.cpp} (100%) diff --git a/ion/src/device/shared/drivers/Makefile b/ion/src/device/shared/drivers/Makefile index 386b519dd..548632a8e 100644 --- a/ion/src/device/shared/drivers/Makefile +++ b/ion/src/device/shared/drivers/Makefile @@ -3,7 +3,7 @@ ion_device_src += $(addprefix ion/src/device/shared/drivers/, \ battery.cpp \ base64.cpp \ board.cpp \ - console.cpp:+consoleuart \ + console_uart.cpp:+consoleuart \ console_dummy.cpp:-consoleuart \ crc32.cpp \ display.cpp \ diff --git a/ion/src/device/shared/drivers/console.cpp b/ion/src/device/shared/drivers/console_uart.cpp similarity index 100% rename from ion/src/device/shared/drivers/console.cpp rename to ion/src/device/shared/drivers/console_uart.cpp diff --git a/ion/src/device/shared/usb/Makefile b/ion/src/device/shared/usb/Makefile index 21c46dcbe..2e7ae45db 100644 --- a/ion/src/device/shared/usb/Makefile +++ b/ion/src/device/shared/usb/Makefile @@ -48,7 +48,7 @@ ion_device_dfu_src += $(addprefix ion/src/device/shared/drivers/, \ battery.cpp \ base64.cpp \ board.cpp \ - console.cpp \ + console_uart.cpp \ crc32.cpp \ display.cpp \ events_keyboard_platform.cpp \