Skip to content
Compare
Choose a tag to compare
@hexdae hexdae released this 13 Jun 21:48
· 6 commits to master since this release

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()