Skip to content

Commit 1e8b32d

Browse files
committed
[nrf noup] [nrfconnect] [zephyr] Disable synchronous printk
Disable synchronous printk to avoid blocking IRQs which may affect time sensitive components (like 15.4 radio). Signed-off-by: Marcin Kajor <marcin.kajor@nordicsemi.no>
1 parent c86d08a commit 1e8b32d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

config/nrfconnect/chip-module/Kconfig.defaults

+3-1
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,10 @@ config LOG_DEFAULT_LEVEL
425425
config CHIP_LOG_SIZE_OPTIMIZATION
426426
default y
427427

428+
# disable synchronous printk to avoid blocking IRQs which
429+
# may affect time sensitive components
428430
config PRINTK_SYNC
429-
default y
431+
default n
430432

431433
endif # LOG
432434

config/zephyr/chip-module/Kconfig.defaults

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ config LOG_DEFAULT_LEVEL
4040

4141
endif
4242

43+
# disable synchronous printk to avoid blocking IRQs which
44+
# may affect time sensitive components
4345
config PRINTK_SYNC
4446
bool
45-
default y
47+
default n
4648

4749
config ASSERT
4850
bool

0 commit comments

Comments
 (0)