nrf: fix nrf52-s132v6 config

In my excitement to get the SoftDevice PR ready, I made two mistakes.
They're fixed in this commit.

  * Add the `s132v6` build tag.
  * Remove the (old) `ldscript` property.

This fixes the following issue:
https://github.com/aykevl/go-bluetooth/issues/1
This commit is contained in:
Ayke van Laethem
2019-11-16 18:03:40 +01:00
committed by Ron Evans
parent 118af9df69
commit 3cedebd299
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
{
"build-tags": ["softdevice"],
"build-tags": ["softdevice", "s132v6"],
"linkerscript": "targets/nrf52-s132v6.ld"
}
+1 -2
View File
@@ -1,4 +1,3 @@
{
"inherits": ["pca10040", "nrf52-s132v6"],
"ldscript": "targets/nrf52-s132v6.ld"
"inherits": ["pca10040", "nrf52-s132v6"]
}