Skip to content

Commit e386fc7

Browse files
authored
Merge pull request #1 from dariusarnold/fix-nrf-sdk-links
Fix nrf sdk links
2 parents c0638c6 + 0a40178 commit e386fc7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/buildAndProgram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
To build this project, you'll need:
66

77
- A cross-compiler : [ARM-GCC (10.3-2021.10)](https://developer.arm.com/downloads/-/gnu-rm)
8-
- The NRF52 SDK 15.3.0 : [nRF-SDK v15.3.0](https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/nRF5_SDK_15.3.0_59ac345.zip)
8+
- The NRF52 SDK 15.3.0 : [nRF-SDK v15.3.0](https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/sdks/nrf5/binaries/nrf5sdk153059ac345.zip)
99
- The Python 3 modules `cbor`, `intelhex`, `click` and `cryptography` modules for the `mcuboot` tool (see [requirements.txt](../tools/mcuboot/requirements.txt))
1010
- To keep the system clean, you can install python modules into a python virtual environment (`venv`)
1111
```sh

docker/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export npm_config_cache="${NPM_DIR}"
1717

1818
export BUILD_TYPE=${BUILD_TYPE:=Release}
1919
export GCC_ARM_VER=${GCC_ARM_VER:="10.3-2021.10"}
20-
export NRF_SDK_VER=${NRF_SDK_VER:="nRF5_SDK_15.3.0_59ac345"}
20+
export NRF_SDK_VER=${NRF_SDK_VER:="nrf5sdk153059ac345"}
2121

2222
MACHINE="$(uname -m)"
2323
[ "$MACHINE" = "arm64" ] && MACHINE="aarch64"
@@ -55,7 +55,7 @@ GetMcuBoot() {
5555
}
5656

5757
GetNrfSdk() {
58-
wget -q "https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/$NRF_SDK_VER.zip" -O /tmp/$NRF_SDK_VER
58+
wget -q "https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/sdks/nrf5/binaries/$NRF_SDK_VER.zip" -O /tmp/$NRF_SDK_VER
5959
unzip -q /tmp/$NRF_SDK_VER -d "$TOOLS_DIR/"
6060
rm /tmp/$NRF_SDK_VER
6161
}

0 commit comments

Comments
 (0)