This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch pr54 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit dd63e568f146776c1376660ff4efec981142eae1 Author: Alin Jerpelea <[email protected]> AuthorDate: Sat Dec 28 10:37:14 2019 +0900 arch: cxd56xx: Add ITM syslog init at startup --- arch/arm/src/cxd56xx/Make.defs | 4 ++++ arch/arm/src/cxd56xx/cxd56_start.c | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/arch/arm/src/cxd56xx/Make.defs b/arch/arm/src/cxd56xx/Make.defs index 8bfdb79..943a905 100644 --- a/arch/arm/src/cxd56xx/Make.defs +++ b/arch/arm/src/cxd56xx/Make.defs @@ -89,6 +89,10 @@ CMN_CSRCS += up_copyarmstate.c endif endif +ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y) +CMN_CSRCS += up_itm_syslog.c +endif + CHIP_ASRCS += cxd56_farapistub.S CHIP_CSRCS = cxd56_allocateheap.c cxd56_idle.c diff --git a/arch/arm/src/cxd56xx/cxd56_start.c b/arch/arm/src/cxd56xx/cxd56_start.c index d656d1d..2024ade 100644 --- a/arch/arm/src/cxd56xx/cxd56_start.c +++ b/arch/arm/src/cxd56xx/cxd56_start.c @@ -320,6 +320,12 @@ void __start(void) fpuconfig(); +#ifdef CONFIG_ARMV7M_ITMSYSLOG + /* Perform ARMv7-M ITM SYSLOG initialization */ + + itm_syslog_initialize(); +#endif + /* Perform early serial initialization */ #ifdef USE_EARLYSERIALINIT
