Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/wifi/promiscuous/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ CONFIG_NET_SOCKETS_POLL_MAX=10
CONFIG_MAIN_STACK_SIZE=5200
CONFIG_NET_TX_STACK_SIZE=4096
CONFIG_NET_RX_STACK_SIZE=4096
CONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=20000

# Debugging
CONFIG_STACK_SENTINEL=y
Expand Down
4 changes: 2 additions & 2 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: 56fbb4f3c7bba12fb34a5cd111b4ea9f7ad52162
revision: pull/3557/head
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using pull request references (e.g., pull/3557/head) as revision values is not recommended for production manifests. Pull request branches can be rebased, force-pushed, or deleted after merge, making builds non-reproducible. Consider using specific commit SHAs instead. Once the referenced PRs are merged, this should be updated to point to the actual merged commit SHA.

Suggested change
revision: pull/3557/head
revision: <MERGED_COMMIT_SHA>

Copilot uses AI. Check for mistakes.
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down Expand Up @@ -143,7 +143,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: 5b0b19946f2bb47cfa4aa358322146edee38cbd5
revision: pull/1941/head
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using pull request references (e.g., pull/1941/head) as revision values is not recommended for production manifests. Pull request branches can be rebased, force-pushed, or deleted after merge, making builds non-reproducible. Consider using specific commit SHAs instead. Once the referenced PRs are merged, this should be updated to point to the actual merged commit SHA.

Suggested change
revision: pull/1941/head
revision: <MERGED_COMMIT_SHA>

Copilot uses AI. Check for mistakes.
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading