From 56e75e9db8e0313fcf594da8d69a161dc2d03add Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 11 Jun 2016 11:50:38 -0600 Subject: [PATCH] Rename CONFIG_DEBUG_VERBOSE to CONFIG_DEBUG_INFO --- examples/README.txt | 2 +- examples/cc3000/telnetd_driver.c | 2 +- examples/helloxx/helloxx_main.cxx | 2 +- netutils/chat/chat.c | 4 ++-- netutils/tftpc/tftpc_packets.c | 2 +- netutils/thttpd/libhttpd.h | 6 +++--- netutils/webserver/httpd.c | 4 ++-- nshlib/Kconfig | 4 ++-- nshlib/nsh_fscmds.c | 2 +- nshlib/nsh_netinit.c | 4 ++-- platform/arduino-due/sam_cxxinitialize.c | 2 +- platform/cloudctrl/stm32_cxxinitialize.c | 2 +- platform/fire-stm32v2/stm32_cxxinitialize.c | 2 +- platform/mikroe-stm32f4/stm32_cxxinitialize.c | 2 +- platform/nucleo-144/stm32_cxxinitialize.c | 2 +- platform/nucleo-f303re/stm32_cxxinitialize.c | 2 +- platform/nucleo-f4x1re/stm32_cxxinitialize.c | 2 +- platform/nucleo-l476rg/stm32_cxxinitialize.c | 2 +- platform/olimex-stm32-h405/stm32_cxxinitialize.c | 2 +- platform/olimex-stm32-h407/stm32_cxxinitialize.c | 2 +- platform/olimex-stm32-p207/stm32_cxxinitialize.c | 2 +- platform/olimexino-stm32/stm32_cxxinitialize.c | 2 +- platform/pcduino-a10/a1x_cxxinitialize.c | 2 +- platform/sabre-6quad/imx_cxxinitialize.c | 2 +- platform/sam3u-ek/sam_cxxinitialized.c | 2 +- platform/sam4e-ek/sam_cxxinitialize.c | 2 +- platform/sam4l-xplained/sam_cxxinitialize.c | 2 +- platform/sam4s-xplained-pro/sam_cxxinitialize.c | 2 +- platform/sam4s-xplained/sam_cxxinitialize.c | 2 +- platform/sama5d2-xult/sam_cxxinitialize.c | 2 +- platform/sama5d3-xplained/sam_cxxinitialize.c | 2 +- platform/sama5d3x-ek/sam_cxxinitialize.c | 2 +- platform/sama5d4-ek/sam_cxxinitialize.c | 2 +- platform/samd20-xplained/sam_cxxinitialize.c | 2 +- platform/samd21-xplained/sam_cxxinitialize.c | 2 +- platform/same70-xplained/sam_cxxinitialize.c | 2 +- platform/saml21-xplained/sam_cxxinitialize.c | 2 +- platform/samv71-xult/sam_cxxinitialize.c | 2 +- platform/shenzhou/stm32_cxxinitialize.c | 2 +- platform/spark/stm32_cxxinitialize.c | 2 +- platform/stm3220g-eval/stm32_cxxinitialize.c | 2 +- platform/stm3240g-eval/stm32_cxxinitialize.c | 2 +- platform/stm32f3discovery/stm32_cxxinitialize.c | 2 +- platform/stm32f429i-disco/stm32_cxxinitialize.c | 2 +- platform/stm32f4discovery/stm32_cxxinitialize.c | 2 +- platform/stm32f746g-disco/stm32_cxxinitialize.c | 2 +- platform/stm32l476vg-disco/stm32_cxxinitialize.c | 2 +- platform/stm32ldiscovery/stm32_cxxinitialize.c | 2 +- platform/teensy-lc/kl_cxxinitialize.c | 2 +- platform/viewtool-stm32f107/stm32_cxxinitialize.c | 2 +- 50 files changed, 56 insertions(+), 56 deletions(-) diff --git a/examples/README.txt b/examples/README.txt index 14291a07f..e5b0e9e55 100644 --- a/examples/README.txt +++ b/examples/README.txt @@ -485,7 +485,7 @@ examples/ftpc Otherwise, you will have not feeback about what is going on: CONFIG_DEBUG=y - CONFIG_DEBUG_VERBOSE=y + CONFIG_DEBUG_INFO=y CONFIG_DEBUG_FTPC=y examples/ftpd diff --git a/examples/cc3000/telnetd_driver.c b/examples/cc3000/telnetd_driver.c index 2fee9fcab..863270983 100644 --- a/examples/cc3000/telnetd_driver.c +++ b/examples/cc3000/telnetd_driver.c @@ -180,7 +180,7 @@ static inline void telnetd_dumpbuffer(FAR const char *msg, FAR const char *buffer, unsigned int nbytes) { - /* CONFIG_DEBUG, CONFIG_DEBUG_VERBOSE, and CONFIG_DEBUG_NET have to be + /* CONFIG_DEBUG, CONFIG_DEBUG_INFO, and CONFIG_DEBUG_NET have to be * defined or the following does nothing. */ diff --git a/examples/helloxx/helloxx_main.cxx b/examples/helloxx/helloxx_main.cxx index 940dccef8..9e0da72fd 100644 --- a/examples/helloxx/helloxx_main.cxx +++ b/examples/helloxx/helloxx_main.cxx @@ -65,7 +65,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/netutils/chat/chat.c b/netutils/chat/chat.c index beecf12b8..62038172b 100644 --- a/netutils/chat/chat.c +++ b/netutils/chat/chat.c @@ -662,7 +662,7 @@ static int chat_script_run(FAR struct chat* priv) { FAR struct chat_line* line = priv->script; int ret = 0; -#ifdef CONFIG_DEBUG_VERBOSE +#ifdef CONFIG_DEBUG_INFO int line_num = 0; #endif @@ -672,7 +672,7 @@ static int chat_script_run(FAR struct chat* priv) if (!ret) { line = line->next; -#ifdef CONFIG_DEBUG_VERBOSE +#ifdef CONFIG_DEBUG_INFO line_num++; #endif } diff --git a/netutils/tftpc/tftpc_packets.c b/netutils/tftpc/tftpc_packets.c index 0c4a2fa11..6832cd6e9 100644 --- a/netutils/tftpc/tftpc_packets.c +++ b/netutils/tftpc/tftpc_packets.c @@ -244,7 +244,7 @@ ssize_t tftp_recvfrom(int sd, void *buf, size_t len, struct sockaddr_in *from) { /* For debugging, it is helpful to start with a clean buffer */ -#if defined(CONFIG_DEBUG_VERBOSE) && defined(CONFIG_DEBUG_NET) +#if defined(CONFIG_DEBUG_INFO) && defined(CONFIG_DEBUG_NET) memset(buf, 0, len); #endif diff --git a/netutils/thttpd/libhttpd.h b/netutils/thttpd/libhttpd.h index 248d9bbe2..d83c2c419 100644 --- a/netutils/thttpd/libhttpd.h +++ b/netutils/thttpd/libhttpd.h @@ -74,7 +74,7 @@ #undef CONFIG_THTTPD_BADREQUEST /* Define to enable "Bad Request" instrumentation */ #ifdef CONFIG_THTTPD_BADREQUEST -# if !defined(CONFIG_DEBUG_VERBOSE) || !defined(CONFIG_DEBUG_NET) +# if !defined(CONFIG_DEBUG_INFO) || !defined(CONFIG_DEBUG_NET) # undef CONFIG_THTTPD_BADREQUEST # else # define BADREQUEST(s) nvdbg("Bad Request: \"%s\"\n", s) @@ -91,7 +91,7 @@ #undef CONFIG_THTTPD_NOTIMPLEMENTED /* Define to enable "Not Implemented" instrumentation */ #ifdef CONFIG_THTTPD_NOTIMPLEMENTED -# if !defined(CONFIG_DEBUG_VERBOSE) || !defined(CONFIG_DEBUG_NET) +# if !defined(CONFIG_DEBUG_INFO) || !defined(CONFIG_DEBUG_NET) # undef CONFIG_THTTPD_NOTIMPLEMENTED # else # define NOTIMPLEMENTED(s) nvdbg("Not Implemented: \"%s\"\n", s) @@ -108,7 +108,7 @@ #undef CONFIG_THTTPD_INTERNALERROR /* Define to enable "Internal Error" instrumentation */ #ifdef CONFIG_THTTPD_INTERNALERROR -# if !defined(CONFIG_DEBUG_VERBOSE) || !defined(CONFIG_DEBUG_NET) +# if !defined(CONFIG_DEBUG_INFO) || !defined(CONFIG_DEBUG_NET) # undef CONFIG_THTTPD_INTERNALERROR # else # define INTERNALERROR(s) nvdbg("Internal Error: \"%s\"\n", s) diff --git a/netutils/webserver/httpd.c b/netutils/webserver/httpd.c index bd7f3a092..b46f0739d 100644 --- a/netutils/webserver/httpd.c +++ b/netutils/webserver/httpd.c @@ -193,7 +193,7 @@ static int httpd_close(struct httpd_fs_file *file) #ifdef CONFIG_NETUTILS_HTTPD_DUMPBUFFER static void httpd_dumpbuffer(FAR const char *msg, FAR const char *buffer, unsigned int nbytes) { - /* CONFIG_DEBUG, CONFIG_DEBUG_VERBOSE, and CONFIG_DEBUG_NET have to be + /* CONFIG_DEBUG, CONFIG_DEBUG_INFO, and CONFIG_DEBUG_NET have to be * defined or the following does nothing. */ @@ -206,7 +206,7 @@ static void httpd_dumpbuffer(FAR const char *msg, FAR const char *buffer, unsign #ifdef CONFIG_NETUTILS_HTTPD_DUMPPSTATE static void httpd_dumppstate(struct httpd_state *pstate, const char *msg) { -#if defined(CONFIG_DEBUG) && defined(CONFIG_DEBUG_VERBOSE) && defined(CONFIG_DEBUG_NET) +#if defined(CONFIG_DEBUG) && defined(CONFIG_DEBUG_INFO) && defined(CONFIG_DEBUG_NET) nvdbg("[%d] pstate(%p): [%s]\n", pstate->ht_sockfd, pstate, msg); nvdbg(" filename: [%s]\n", pstate->ht_filename); nvdbg(" htfile len: %d\n", pstate->ht_file.len); diff --git a/nshlib/Kconfig b/nshlib/Kconfig index cf6788248..f871200d6 100644 --- a/nshlib/Kconfig +++ b/nshlib/Kconfig @@ -1041,10 +1041,10 @@ config NSH_NETINIT_DEBUG depends on DEBUG ---help--- Normally debug output is controlled by DEBUG_NET. However, that - will generate a LOT of debug output, especially if DEBUG_VERBOSE is + will generate a LOT of debug output, especially if CONFIG_DEBUG_INFO is also selected. This option is intended to force VERVOSE debug output from the NSH network initialization logic even if DEBUG_NET - or DEBUG_VERBOSE are not selected. This allows for focused, unit- + or CONFIG_DEBUG_INFO are not selected. This allows for focused, unit- level debug of the NSH network initialization logic. menu "IP Address Configuration" diff --git a/nshlib/nsh_fscmds.c b/nshlib/nsh_fscmds.c index 530720401..df2fda8e1 100644 --- a/nshlib/nsh_fscmds.c +++ b/nshlib/nsh_fscmds.c @@ -1290,7 +1290,7 @@ int cmd_mkrd(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) goto errout_with_fmt; } -#ifdef CONFIG_DEBUG_VERBOSE +#ifdef CONFIG_DEBUG_INFO memset(buffer, 0, sectsize * nsectors); #endif dbg("RAMDISK at %p\n", buffer); diff --git a/nshlib/nsh_netinit.c b/nshlib/nsh_netinit.c index 863376931..caca5e3c8 100644 --- a/nshlib/nsh_netinit.c +++ b/nshlib/nsh_netinit.c @@ -45,8 +45,8 @@ /* Is network initialization debug forced on? */ #ifdef CONFIG_NSH_NETINIT_DEBUG -# undef CONFIG_DEBUG_VERBOSE -# define CONFIG_DEBUG_VERBOSE 1 +# undef CONFIG_DEBUG_INFO +# define CONFIG_DEBUG_INFO 1 # undef CONFIG_DEBUG_NET # define CONFIG_DEBUG_NET 1 #endif diff --git a/platform/arduino-due/sam_cxxinitialize.c b/platform/arduino-due/sam_cxxinitialize.c index 4a745351c..58662cee9 100644 --- a/platform/arduino-due/sam_cxxinitialize.c +++ b/platform/arduino-due/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/cloudctrl/stm32_cxxinitialize.c b/platform/cloudctrl/stm32_cxxinitialize.c index e002b283c..63216a310 100644 --- a/platform/cloudctrl/stm32_cxxinitialize.c +++ b/platform/cloudctrl/stm32_cxxinitialize.c @@ -61,7 +61,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/fire-stm32v2/stm32_cxxinitialize.c b/platform/fire-stm32v2/stm32_cxxinitialize.c index b95d8578d..cd6fd0e5a 100644 --- a/platform/fire-stm32v2/stm32_cxxinitialize.c +++ b/platform/fire-stm32v2/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/mikroe-stm32f4/stm32_cxxinitialize.c b/platform/mikroe-stm32f4/stm32_cxxinitialize.c index e6aff83a9..aabfab73b 100644 --- a/platform/mikroe-stm32f4/stm32_cxxinitialize.c +++ b/platform/mikroe-stm32f4/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/nucleo-144/stm32_cxxinitialize.c b/platform/nucleo-144/stm32_cxxinitialize.c index 3d81e480a..48fe9d67a 100644 --- a/platform/nucleo-144/stm32_cxxinitialize.c +++ b/platform/nucleo-144/stm32_cxxinitialize.c @@ -61,7 +61,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/nucleo-f303re/stm32_cxxinitialize.c b/platform/nucleo-f303re/stm32_cxxinitialize.c index 4884f6ba6..856d0c5ab 100644 --- a/platform/nucleo-f303re/stm32_cxxinitialize.c +++ b/platform/nucleo-f303re/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/nucleo-f4x1re/stm32_cxxinitialize.c b/platform/nucleo-f4x1re/stm32_cxxinitialize.c index 3017156b9..bd1075efb 100644 --- a/platform/nucleo-f4x1re/stm32_cxxinitialize.c +++ b/platform/nucleo-f4x1re/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/nucleo-l476rg/stm32_cxxinitialize.c b/platform/nucleo-l476rg/stm32_cxxinitialize.c index 05a408736..bcb9f2712 100644 --- a/platform/nucleo-l476rg/stm32_cxxinitialize.c +++ b/platform/nucleo-l476rg/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/olimex-stm32-h405/stm32_cxxinitialize.c b/platform/olimex-stm32-h405/stm32_cxxinitialize.c index 507d8f687..5fa0dae58 100644 --- a/platform/olimex-stm32-h405/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-h405/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/olimex-stm32-h407/stm32_cxxinitialize.c b/platform/olimex-stm32-h407/stm32_cxxinitialize.c index 550b826dc..6b6b961e3 100644 --- a/platform/olimex-stm32-h407/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-h407/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/olimex-stm32-p207/stm32_cxxinitialize.c b/platform/olimex-stm32-p207/stm32_cxxinitialize.c index 1953b0aca..742141fbb 100644 --- a/platform/olimex-stm32-p207/stm32_cxxinitialize.c +++ b/platform/olimex-stm32-p207/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/olimexino-stm32/stm32_cxxinitialize.c b/platform/olimexino-stm32/stm32_cxxinitialize.c index ba29a0f79..3d06bc7d0 100644 --- a/platform/olimexino-stm32/stm32_cxxinitialize.c +++ b/platform/olimexino-stm32/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/pcduino-a10/a1x_cxxinitialize.c b/platform/pcduino-a10/a1x_cxxinitialize.c index c02405039..1cdd6efc2 100644 --- a/platform/pcduino-a10/a1x_cxxinitialize.c +++ b/platform/pcduino-a10/a1x_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sabre-6quad/imx_cxxinitialize.c b/platform/sabre-6quad/imx_cxxinitialize.c index 3cc114105..8edc5ae8e 100644 --- a/platform/sabre-6quad/imx_cxxinitialize.c +++ b/platform/sabre-6quad/imx_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sam3u-ek/sam_cxxinitialized.c b/platform/sam3u-ek/sam_cxxinitialized.c index b5eb6f086..3685f00fb 100644 --- a/platform/sam3u-ek/sam_cxxinitialized.c +++ b/platform/sam3u-ek/sam_cxxinitialized.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sam4e-ek/sam_cxxinitialize.c b/platform/sam4e-ek/sam_cxxinitialize.c index 5c01a5bcc..8498bc63b 100644 --- a/platform/sam4e-ek/sam_cxxinitialize.c +++ b/platform/sam4e-ek/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sam4l-xplained/sam_cxxinitialize.c b/platform/sam4l-xplained/sam_cxxinitialize.c index 0770af122..04e777848 100644 --- a/platform/sam4l-xplained/sam_cxxinitialize.c +++ b/platform/sam4l-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sam4s-xplained-pro/sam_cxxinitialize.c b/platform/sam4s-xplained-pro/sam_cxxinitialize.c index 589428bc9..5b705fef7 100644 --- a/platform/sam4s-xplained-pro/sam_cxxinitialize.c +++ b/platform/sam4s-xplained-pro/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sam4s-xplained/sam_cxxinitialize.c b/platform/sam4s-xplained/sam_cxxinitialize.c index d36ea0a13..54bcd399b 100644 --- a/platform/sam4s-xplained/sam_cxxinitialize.c +++ b/platform/sam4s-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sama5d2-xult/sam_cxxinitialize.c b/platform/sama5d2-xult/sam_cxxinitialize.c index e0ff5f7fd..213b9eff3 100644 --- a/platform/sama5d2-xult/sam_cxxinitialize.c +++ b/platform/sama5d2-xult/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sama5d3-xplained/sam_cxxinitialize.c b/platform/sama5d3-xplained/sam_cxxinitialize.c index 8a74ac79a..1af07a7ba 100644 --- a/platform/sama5d3-xplained/sam_cxxinitialize.c +++ b/platform/sama5d3-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sama5d3x-ek/sam_cxxinitialize.c b/platform/sama5d3x-ek/sam_cxxinitialize.c index 4accbc45f..256690198 100644 --- a/platform/sama5d3x-ek/sam_cxxinitialize.c +++ b/platform/sama5d3x-ek/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/sama5d4-ek/sam_cxxinitialize.c b/platform/sama5d4-ek/sam_cxxinitialize.c index a9c8cada3..8b492e857 100644 --- a/platform/sama5d4-ek/sam_cxxinitialize.c +++ b/platform/sama5d4-ek/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/samd20-xplained/sam_cxxinitialize.c b/platform/samd20-xplained/sam_cxxinitialize.c index e17aa64ca..4ed7ce4df 100644 --- a/platform/samd20-xplained/sam_cxxinitialize.c +++ b/platform/samd20-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/samd21-xplained/sam_cxxinitialize.c b/platform/samd21-xplained/sam_cxxinitialize.c index bf23cc7f2..3b05662d1 100644 --- a/platform/samd21-xplained/sam_cxxinitialize.c +++ b/platform/samd21-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/same70-xplained/sam_cxxinitialize.c b/platform/same70-xplained/sam_cxxinitialize.c index 8d5327cc5..187069e8e 100644 --- a/platform/same70-xplained/sam_cxxinitialize.c +++ b/platform/same70-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/saml21-xplained/sam_cxxinitialize.c b/platform/saml21-xplained/sam_cxxinitialize.c index 8ca2bda15..ffbeac444 100644 --- a/platform/saml21-xplained/sam_cxxinitialize.c +++ b/platform/saml21-xplained/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/samv71-xult/sam_cxxinitialize.c b/platform/samv71-xult/sam_cxxinitialize.c index 51be36144..e9ed9356f 100644 --- a/platform/samv71-xult/sam_cxxinitialize.c +++ b/platform/samv71-xult/sam_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/shenzhou/stm32_cxxinitialize.c b/platform/shenzhou/stm32_cxxinitialize.c index 197f4065e..70ab6e958 100644 --- a/platform/shenzhou/stm32_cxxinitialize.c +++ b/platform/shenzhou/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/spark/stm32_cxxinitialize.c b/platform/spark/stm32_cxxinitialize.c index 30c9969b0..7be868fab 100644 --- a/platform/spark/stm32_cxxinitialize.c +++ b/platform/spark/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm3220g-eval/stm32_cxxinitialize.c b/platform/stm3220g-eval/stm32_cxxinitialize.c index 3b824d090..3123536d4 100644 --- a/platform/stm3220g-eval/stm32_cxxinitialize.c +++ b/platform/stm3220g-eval/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm3240g-eval/stm32_cxxinitialize.c b/platform/stm3240g-eval/stm32_cxxinitialize.c index 30ad28c14..c98e897ee 100644 --- a/platform/stm3240g-eval/stm32_cxxinitialize.c +++ b/platform/stm3240g-eval/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32f3discovery/stm32_cxxinitialize.c b/platform/stm32f3discovery/stm32_cxxinitialize.c index 4515e2ec5..46720754a 100644 --- a/platform/stm32f3discovery/stm32_cxxinitialize.c +++ b/platform/stm32f3discovery/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32f429i-disco/stm32_cxxinitialize.c b/platform/stm32f429i-disco/stm32_cxxinitialize.c index ec4c33556..f5e588073 100644 --- a/platform/stm32f429i-disco/stm32_cxxinitialize.c +++ b/platform/stm32f429i-disco/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32f4discovery/stm32_cxxinitialize.c b/platform/stm32f4discovery/stm32_cxxinitialize.c index 7922a8142..b22e6abca 100644 --- a/platform/stm32f4discovery/stm32_cxxinitialize.c +++ b/platform/stm32f4discovery/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32f746g-disco/stm32_cxxinitialize.c b/platform/stm32f746g-disco/stm32_cxxinitialize.c index cb98ffc9b..ab5a51014 100644 --- a/platform/stm32f746g-disco/stm32_cxxinitialize.c +++ b/platform/stm32f746g-disco/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32l476vg-disco/stm32_cxxinitialize.c b/platform/stm32l476vg-disco/stm32_cxxinitialize.c index ba024de68..0a59c0967 100644 --- a/platform/stm32l476vg-disco/stm32_cxxinitialize.c +++ b/platform/stm32l476vg-disco/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/stm32ldiscovery/stm32_cxxinitialize.c b/platform/stm32ldiscovery/stm32_cxxinitialize.c index 95aca1c52..a0b644e09 100644 --- a/platform/stm32ldiscovery/stm32_cxxinitialize.c +++ b/platform/stm32ldiscovery/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/teensy-lc/kl_cxxinitialize.c b/platform/teensy-lc/kl_cxxinitialize.c index 36c3e6d3a..ac914ddbd 100644 --- a/platform/teensy-lc/kl_cxxinitialize.c +++ b/platform/teensy-lc/kl_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else diff --git a/platform/viewtool-stm32f107/stm32_cxxinitialize.c b/platform/viewtool-stm32f107/stm32_cxxinitialize.c index 90e4af84a..cc619ddfe 100644 --- a/platform/viewtool-stm32f107/stm32_cxxinitialize.c +++ b/platform/viewtool-stm32f107/stm32_cxxinitialize.c @@ -60,7 +60,7 @@ #ifdef CONFIG_DEBUG_CXX # define cxxdbg dbg # define cxxlldbg lldbg -# ifdef CONFIG_DEBUG_VERBOSE +# ifdef CONFIG_DEBUG_INFO # define cxxvdbg vdbg # define cxxllvdbg llvdbg # else