Skip to content

Commit 9279423

Browse files
Remove old target no longer used.
It will still be available in the `mbed-softdevice` branch.
1 parent 12a1d28 commit 9279423

File tree

5 files changed

+5
-288
lines changed

5 files changed

+5
-288
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ The manual installation (in a Python 3 virtual environment) is the prefer method
4242
As there are multiple revisions of the nRF52 board we are using multiple mbed
4343
targets.
4444

45-
- `nrf52_microbit_v1_41`: For the micro:bit v1.41RC2, v1.41RC4, and v1.41RC5
46-
(nRF52832)
4745
- `nrf52833_dk`: For the Nordic nRF52833 DK board (useful for testing)
4846
- `nrf52_microbit_v1_43`: For the micro:bit v1.43.4 (nRF52833)
4947
- `nrf52_microbit_v1_44` /`nrf52_microbit_v1_45` / `nrf52_microbit_v1_46` /
@@ -53,12 +51,12 @@ targets.
5351
but since the board is currently only manufactured in the `S` variant, only
5452
contains the LSM motion sensor (no FXOS), so it's useful to use this target
5553
name to be able to do conditional compilation.
56-
- `nrf52_microbit_v2_nosd`: V2 target without including SoftDevice (Nordic
57-
Bluetooth stack).
5854

5955
The version of the board can be seen on the silkscreen at the back, near the
6056
right side of the edge connector.
6157

58+
The branch `mbedos-softdevice` contains older targets.
59+
6260
### Initialise
6361

6462
Note that for the `mbed target ...` line you should select the right target
@@ -74,17 +72,12 @@ mbed deploy
7472
```
7573

7674
If it fails to install some of the Python dependencies on the last command (
77-
`mbed deploy`) you can try again manually:
78-
79-
```
80-
pip install -r mbed-os/requirements.txt
81-
```
75+
`mbed deploy`) you can try again manually.
8276

83-
Ideally you should be using virtual environments, alternatively you can use the
84-
`--user` flag:
77+
Run in the Python environment that has `mbed-cli` installed:
8578

8679
```
87-
pip install --user -r mbed-os/requirements.txt
80+
pip install -r mbed-os/requirements.txt
8881
```
8982

9083
**Warning:** Do not use `mbed new .` as it can update MbedOS to the latest

TARGET_NRF52_MICROBIT_v1_41/PinNames.h

Lines changed: 0 additions & 203 deletions
This file was deleted.

TARGET_NRF52_MICROBIT_v1_41/device.h

Lines changed: 0 additions & 38 deletions
This file was deleted.

custom_targets.json

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
{
2-
"NRF52_MICROBIT_v1_41": {
3-
"inherits": ["MCU_NRF52832"],
4-
"release_versions": ["5"],
5-
"device_name": "nRF52832_xxAA",
6-
"macros_add": [
7-
"WSF_MAX_HANDLERS=10",
8-
"NRF52_PAN_12",
9-
"NRF52_PAN_15",
10-
"NRF52_PAN_20",
11-
"NRF52_PAN_30",
12-
"NRF52_PAN_31",
13-
"NRF52_PAN_36",
14-
"NRF52_PAN_51",
15-
"NRF52_PAN_53",
16-
"NRF52_PAN_54",
17-
"NRF52_PAN_55",
18-
"NRF52_PAN_58",
19-
"NRF52_PAN_62",
20-
"NRF52_PAN_63",
21-
"NRF52_PAN_64",
22-
"CONFIG_NFCT_PINS_AS_GPIOS"
23-
],
24-
"device_has_remove": ["ITM"],
25-
"overrides": {
26-
"lf_clock_src": "NRF_LF_SRC_RC"
27-
}
28-
},
292
"MCU_NRF52833": {
303
"inherits": ["MCU_NRF52840"],
314
"device_name": "nRF52840_xxAA",

mbed_app.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44
"*": {
55
"platform.all-stats-enabled": false
66
},
7-
"NRF52_DK": {
8-
"target.lf_clock_src": "NRF_LF_SRC_RC"
9-
},
10-
"NRF52840_DK": {
11-
"target.lf_clock_src": "NRF_LF_SRC_RC"
12-
},
137
"NRF52833_DK": {
148
"target.lf_clock_src": "NRF_LF_SRC_RC"
159
},
@@ -26,8 +20,6 @@
2620
"NRF52_MICROBIT_v1_47": {
2721
},
2822
"NRF52_MICROBIT_v2": {
29-
},
30-
"NRF52_MICROBIT_v2_NOSD": {
3123
}
3224
}
3325
}

0 commit comments

Comments
 (0)