// The minimal amount of assert functionality necessary when building the nRF 802.15.4 radio driver.
#ifndef __ASSERT_H__
#define__ASSERT_H__#defineNULL((void*)0)// TODO: Implement proper assert handling
#defineassert(condition){if(!(condition)){for(;;);}}#endif// __ASSERT_H__