This is a Rust wrapper for the Nordic
nrfxlib set of libraries,
primarily libmodem
and liboberon
for the nRF91* series chips (System-in-Packages). Supported chips are the following:
- nRF9160
- nRF9151
- nRF9161
Any binary which uses this crate is going to need to provide a bunch of C library functions, because Nordic's library expects them. This includes, but is not limited to:
- atoi
- snprintf
- strol
- strchr
You can't just link newlib
, because that defines memset
which clashes with
the compiler-builtin
crate's definition of memset
. Answers on a post-card
please - for now I'm using
tinyrlibc.
NOTE: This crate does not follow semver. The version of this crate tracks the version of the underlying Nordic libraries.
In your own program or library, you can depend on this crate in the usual fashion:
[dependencies]
# A chip feature must be selected
nrfxlib-sys = { version = "=2.7.1", feature = ["nrf9160"] }
Because the modem library has its debug sections compressed and Rust's tooling doesn't have support for that by default, this crate either strips the debug sections or decompresses them.
By default the crate uses the llvm-tools
that can be installed using rustup component add llvm-tools
.
In this case the debug sections get stripped.
If you'd rather have the debug sections decompressed, then disable the default features on this crate and
enable the arm-none-eabi-objcopy
feature. This will try to use the arm-none-eabi-objcopy
binary that you can
download from the ARM website. This one does have support for debug section compression.
This is a low level wrapper. You might prefer the blocking higher-level wrapper:
[dependencies]
nrfxlib = "*"
You might also prefer the async higher-level wrapper:
[dependencies]
nrf-modem = "*"
Any of the code outside the ./third_party
folder is under the Blue Oak
Licence. Any code inside the ./third_party
folder (include
the Nordic nrfxlib) has its own LICENCE file.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.
- Fixed build by including the binary blobs
- Updated to nrfxlib v2.7.0
- Added support for the nRF9151 and nRF9161
- Updated to nrfxlib v2.4.2
- Improved the way the build script searches for
llvm-objcopy
- Updated to nrfxlib v2.1.0
- Added many oberon crypto functions
- Updated to nrfxlib v1.4.2
- Added new arguments to call to
bsd_init
function. - Switched back to
bindgen
crate, after Cargo issue #5730 was closed.
- Updated to nrfxlib v1.2.0
- Fixed some build errors caused by usize/u32 and isize/i32 conversions.
- Updated to nrfxlib v1.1.0-rc3
- Generate headers for
libnrf_cc310
(CryptoCell 310 API) - Generate headers for
liboberon
(Optimised software crypto implementation)
- Updated to nrfxlib v1.1.0-rc2, including libbsd 0.5.0
- Changed crate version to track Nordic's nrfxlib version number.
- Require users to install bindgen as a command-line tool.
- Use Cargo 5730 workaround.
- Update bindgen to 0.51
- Rustfmt generated code
- Reformat using tabs
- Bundle the C headers (fixes Travis build)
- Sub-module in upstream nrfxlib.
- Add the bsd_limits.h, nrf_key_mgmt.h and nrf_apn_class.h headers.
- Updates to this README to specify checkout of tag v1.0.0.
- Added a Travis CI file.
- Add NEWLIB_PATH so user can point to correct newlib headers.
- Updates to the README and crate metadata
v0.1.0 (Source)
- First version