An open API service indexing awesome lists of open source software.

https://github.com/bazelembedded/rules_openocd

A set of Bazel rules for flashing binaries to microcontrollers.
https://github.com/bazelembedded/rules_openocd

bazel bazel-rules embedded openocd

Last synced: 29 days ago
JSON representation

A set of Bazel rules for flashing binaries to microcontrollers.

Awesome Lists containing this project

README

          

# Openocd Rules for Bazel
A set of Bazel rules for flashing bare-metal programs using
[openocd](https://openocd.org/).

For a comprehensive introduction please read our [documentation](https://bazelembedded.github.io/rules_openocd).

# Getting started

``` python
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
name = "rules_openocd",
remote = "https://github.com/bazelembedded/rules_openocd.git",
commit = "",
)

load("@rules_openocd//:openocd_deps.bzl", "openocd_deps")

openocd_deps()
```