im running on mac with eclipse and tried to use debugger prints, but the don't show up in the console. Same goes for printf and uart. Is there a flag in the makefile preventing it?
im running on mac with eclipse and tried to use debugger prints, but the don't show up in the console. Same goes for printf and uart. Is there a flag in the makefile preventing it?
Have a look at this post, it should help: devzone.nordicsemi.com/.../
Please also update to the latest Segger tools. here is the download link: www.segger.com/jlink-software.html
On Mac OS X, there is only the JLinkRTTClient
, the viewer is not available. I do not know if Eclipse generates the Makefile for you automatically, but you should add this flag in order to enable output logs using RTT:
CFLAGS += -DNRF_LOG_USES_RTT=1
Have a look at this post, it should help: devzone.nordicsemi.com/.../
Please also update to the latest Segger tools. here is the download link: www.segger.com/jlink-software.html
On Mac OS X, there is only the JLinkRTTClient
, the viewer is not available. I do not know if Eclipse generates the Makefile for you automatically, but you should add this flag in order to enable output logs using RTT:
CFLAGS += -DNRF_LOG_USES_RTT=1