Add connection parameter update to throughput test to cover
any connection timeout performing connection update while
subjected to high throughput scenarios.
Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
The PAN B511 evaluation board is a development tool for the
nRF54L15 from Nordic Semiconductor. Due to marketing reasons
the naming was adjusted from panb511 to panb611.
Signed-off-by: Steffen Jahnke <steffen.jahnke@eu.panasonic.com>
If we cannot initialize settings subsystem, it does not make
much sense to do calls into it. This leads to uninitialized
variables being printed and generally makes it hard to tell whether
or not the sample runs with the given config.
Signed-off-by: Dmitrii Sharshakov <d3dx12.xx@gmail.com>
A lot of users seem to be confused by this sample when they try to do
west debug. This is because Zephyr currently does not support flashing
all the cores from a sysbuild automatically when doing a west debug
command. So west flash needs to be done prior to a west debug command.
The README previously actually said the step by step instructions are to
do the build, then immediately west debug, which would cause faulting
and crashing, so change the instructions goal to be a flash, and put a
note about needing to flash before debugging.
Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
When building for the board with a serial backend, a warning will appear
regarding the log level of the CDC ACM implementation. Set it to "OFF"
to avoid CI failures.
Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
To avoid conflicts with boards using the CDC ACM serial backend,
explicitly disable initialization at boot.
Similar to commit 11c7371f99
("samples: Explicitly disable boot USB device support init at boot")
addressing it for the legacy device stack.
Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
Use CONFIG_USE_USB_AUDIO_OUTPUT instead of CONFIG_USB_DEVICE_AUDIO
when assigning USB streams, as CONFIG_USB_DEVICE_AUDIO is unused
by the sample.
Additionally the BSIM test for the sample also incorrectly used it,
so the Cmakelist.txt file was updated to correctly include sources.
Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit set the value of the cs-high-time property for all
STM32-based boards defined in Zephyr and having a QSPI flash memory.
The value is chosen according to the flash memory requirements (often
named 'tSHSL' in the datasheets) and the maximum QSPI frequency.
Signed-off-by: Thomas Altenbach <altenbach.thomas@gmail.com>
Update BAP unicast server samples to work with Google Pixel:
Fix sink/source location count to match actual sink/source count,
preventing "Codec channel setup fail" errors on phone
Increase ATT prepare count from 1 to 2 to handle phone sending
Codec Config for 3 ASEs simultaneously, avoiding Codec Config
failures during recording
Signed-off-by: Chang An <chang.an_1@nxp.com>
Not all combinations of main mode and sub mode are valid, so to make it
harder to select incorrect parameters, the main mode and sub mode
enums are combined into one.
Now the user chooses any valid option in enum bt_conn_le_cs_mode.
Signed-off-by: Olivier Lesage <olivier.lesage@nordicsemi.no>
Update the broadcast sink and source samples to use
bt_iso_chan_get_info to get the BIG handle and BIS number of a
BAP stream.
Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
Update the unicast client and server samples to use
bt_iso_chan_get_info to get the CIG and CIS IDs of a
BAP stream.
The samples show how it is possible to get the information early
as the unicast client (it is possible right after the stream
has been added to a group), and how the values are only
available to the server once the CIS is connected, which
is indicated by the stream_started callback.
Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
1. Renamed MCXA276 to MCXA266
2. NXP frdm_mcxa276 is renamed to frdm_mcxa266,
add this information to migration-guide-4.3.rst.
Signed-off-by: Peter Wang <chaoyi.wang@nxp.com>
1. Renamed MCXA166 to MCXA346.
2. NXP frdm_mcxa166 is renamed to frdm_mcxa346,
add this information to migration-guide-4.3.rst.
Signed-off-by: Zhaoxiang Jin <Zhaoxiang.Jin_1@nxp.com>
Define SAI1 node for STM32H7xx series.
Add STM32H7xx related DMA configs.
Enable samples/drivers/i2s/output for nucleo_h745zi_q/m7
Signed-off-by: Mario Paja <mariopaja@hotmail.com>
External flash memory is typically not used, so it should
be disabled by default. The GPIO6 port used by this device
should also be disabled.
Signed-off-by: Adam Kondraciuk <adam.kondraciuk@nordicsemi.no>
If st_stm32_fmc_sdram compatible is present, get base address and
external memory size. Add stm32f469i-disco overlay file
Signed-off-by: Philippe Peurichard <p.peurichard@gmail.com>
The LVGL screen_transparency sample was refactored in two ways:
- Remove old obsolete display initialization code. LVGL does not even
react to this code because LVGL color format is determined during LVGL
initialization, which comes before main().
Further, the way it is written right now is incompatible with `AL_88`
color.
- Add some RGB color text for demonstration purposes.
Signed-off-by: Martin Stumpf <finomnis@gmail.com>