Skip to content

Commit

Permalink
zephyr: boards: fix nrf53 downstream
Browse files Browse the repository at this point in the history
Pass '-DSNIPPET=bt-ll-sw-split' for building zll downstream.

Signed-off-by: Aytürk Düzen <[email protected]>
  • Loading branch information
AyturkDuzen committed Nov 25, 2024
1 parent 8b9bff0 commit e23f2f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions autopts/ptsprojects/boards/nrf53.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def build_and_flash(zephyr_wd, board, debugger_snr, conf_file=None, *args):
check_call(['west', 'flash', '--skip-rebuild', '--recover', '-i', debugger_snr], cwd=tester_dir)

cmd = ['west', 'build', '--no-sysbuild', '-b', 'nrf5340dk/nrf5340/cpunet', '--',
f'-DEXTRA_CONF_FILE=\'nrf5340_cpunet_iso-bt_ll_sw_split.conf;'
f'../../../tests/bluetooth/tester/hci_ipc_cpunet.conf\'']
f'-DEXTRA_CONF_FILE=\'nrf5340_cpunet_iso-bt_ll_sw_split.conf;',
f'../../../tests/bluetooth/tester/hci_ipc_cpunet.conf\'',
'-DSNIPPET=bt-ll-sw-split']
check_call(cmd, cwd=controller_dir)
check_call(['west', 'flash', '--skip-rebuild', '-i', debugger_snr], cwd=controller_dir)

0 comments on commit e23f2f7

Please sign in to comment.