The Real Time Terminal functionality of the Segger J-Link debug probe and software suite allows applications to write to a certain RAM area that is read in real-time by the debugger. This is specially useful when a UART is not available to provide a console. This commit adds a console driver that outputs over an RTT "connection". Change-Id: Ifce8020060e9f519a61f3f1fbe9f56f98da2ef7f Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
9 lines
389 B
Makefile
9 lines
389 B
Makefile
obj-$(CONFIG_ENABLE_SHELL) += shells/
|
|
obj-$(CONFIG_CONSOLE_HANDLER_SHELL) += console_handler_shell.o
|
|
obj-$(CONFIG_UART_CONSOLE) += uart_console.o
|
|
obj-$(CONFIG_RAM_CONSOLE) += ram_console.o
|
|
obj-$(CONFIG_RTT_CONSOLE) += rtt_console.o
|
|
obj-$(CONFIG_IPM_CONSOLE_RECEIVER) += ipm_console_receiver.o
|
|
obj-$(CONFIG_IPM_CONSOLE_SENDER) += ipm_console_sender.o
|
|
obj-$(CONFIG_UART_PIPE) += uart_pipe.o
|