nrf-802154-sys 0.1.0

Low level Rust bindings to the NRF 802.15.4 Radio Driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
// The minimal amount of assert functionality necessary when building the nRF 802.15.4 radio driver.

#ifndef __ASSERT_H__
#define __ASSERT_H__

#define NULL ((void*)0)

// TODO: Implement proper assert handling
#define assert(condition) { if (!(condition)) { for(;;); } }

#endif // __ASSERT_H__