Hello,
I have a project running on a BL653 devkit board (which is a Laird BLE module based on a Nordic NRF52840 device).
I am developing the firmware with Zephyr (this is my first project using this environment).
I started off with the Blinky project and have added routines to start to implement my project requirements.
All was going well until I tried to integrate an NUS service with a large TX/RX buffer (based on the Peripheral UART example).
I have tested the Peripheral NUS example with increased buffer size on a NRF52840 DK and this works well. I increased the buffer sizes by modifying the value in the prj.conf file:
This all worked well (handles larger TX/RX data over BLE NUS service - as the stock example restricts the transmission to around 40 bytes).
When I tried to transfer the relevant code from the Peripheral UART example to my project I get an error saying that it does not recognise the 'CONFIG_BT_NUS_UART_BUFFER_SIZE' (even though I have 'CONFIG_BT_NUS=y' enabled).

One thing I have noticed is that when I open the 'nRF Kconfig GUI' in the Peripheral UART sample code, there is an additional menu item displayed right at the bottom of the listing for 'Nordic UART BLE GATT Service Sample':

This menu item does not appear in my project that is based on the Blinky project:

How can I properly port over the Peripheral NUS sample code into my project so that it recognises the 'CONFIG_BT_NUS_UART_BUFFER_SIZE' ??
Kind regards
Michael