Skip to content

Releases: hexdae/bazel-nordic-sdk

1.1

13 Jun 21:48
Compare
Choose a tag to compare

New features

  • Upgraded gcc toolchain

Incompatible changes

  • None

WORKSPACE setup

# WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "nRF5",
    url = "https://github.com/d-asnaghi/bazel-nordic-sdk/archive/v1.1.tar.gz",
    sha256 = "32688160bde481b82fd18472a7ee631741bcffec252614bfa704846920652d57",
    strip_prefix = "bazel-nordic-sdk-1.1"
)

load("@nRF5//:deps.bzl", "nRF5_deps")
nRF5_deps()

load("@arm_none_eabi//:deps.bzl", "arm_none_eabi_deps")
arm_none_eabi_deps()

1.0

13 Jun 18:49
Compare
Choose a tag to compare
1.0

New features

  • nRF5 SDK
  • .bin target rule
  • .hex target rule
  • platforms support
  • examples

Incompatible changes

  • None

WORKSPACE setup

# WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "nRF5",
    url = "https://github.com/d-asnaghi/bazel-nordic-sdk/archive/v1.0.tar.gz",
    sha256 = "fda821e4504fd96135377802ce67553dd442ecb04bbe160dc9ab3981ee1ba664",
    strip_prefix = "bazel-nordic-sdk-1.0"
)

load("@nRF5//:deps.bzl", "nRF5_deps")
nRF5_deps()

load("@arm_none_eabi//:deps.bzl", "arm_none_eabi_deps")
arm_none_eabi_deps()