File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -157,12 +157,12 @@ config NIMBLE_CPP_ENABLE_ADVERTISEMENT_TYPE_TEXT
157157 while scanning as text messages in the debug log.
158158 This will use approximately 250 bytes of flash memory.
159159
160- config NIMBLE_CPP_ADDR_FMT_INCLUDE_DELIMITER
161- bool "Show colon characters when printing address."
162- default "y "
160+ config NIMBLE_CPP_ADDR_FMT_EXCLUDE_DELIMITER
161+ bool "Exclude colon characters when printing address."
162+ default "n "
163163 help
164- Enabling this option will format MAC addresses with
165- colon characters included when printing.
164+ Enabling this option will format MAC addresses without
165+ colon characters when printing.
166166
167167config NIMBLE_CPP_ADDR_FMT_UPPERCASE
168168 bool "Use uppercase letters when printing address."
Original file line number Diff line number Diff line change 2323
2424# include < algorithm>
2525
26- # ifdef CONFIG_NIMBLE_CPP_ADDR_FMT_INCLUDE_DELIMITER
27- # define NIMBLE_CPP_ADDR_DELIMITER " :"
28- # else
26+ # ifdef CONFIG_NIMBLE_CPP_ADDR_FMT_EXCLUDE_DELIMITER
2927# define NIMBLE_CPP_ADDR_DELIMITER " "
28+ # else
29+ # define NIMBLE_CPP_ADDR_DELIMITER " :"
3030# endif
3131
3232# ifdef CONFIG_NIMBLE_CPP_ADDR_FMT_UPPERCASE
You can’t perform that action at this time.
0 commit comments