1CONFIG_NO_OPTIMIZATIONS=y 2# Allows for copying larger amount of data into the shell 3CONFIG_SHELL_BACKEND_SERIAL_RX_RING_BUFFER_SIZE=4096 4 5# For native posix k_sleep is used in the data path as well as for shell input 6# detection, hence data processing is at least two ticks per packet. To support 7# 5ms ISO interval bidirectional data the system shall never stall for more 8# than 1.5 ms in average. 9CONFIG_SYS_CLOCK_TICKS_PER_SEC=500 10 11# For LC3 the following configs are needed 12CONFIG_FPU=y 13CONFIG_LIBLC3=y 14# The LC3 codec uses a large amount of stack. This app runs the codec in the work-queue, hence 15# inctease stack size for that thread. 16CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096 17# LC3 lib requires floating point support in the c-lib NEWLIB is one way of getting that. 18CONFIG_NEWLIB_LIBC=y 19