#include "Examples.h"
#include "netx_drv.h"
void bodcallback(void* pvDriver, void* pvUser){
__NOP();
}
voidbodexample(void) {
// Attach the BOD callback to the bod signal
(void) DRV_DIO_ChannelIRQAttach(DRV_DIO_ID_BOD,bodcallback,(void*)0xaa55aa55);
// Issue the interrupt controller to generate the interrupt
DRV_NVIC_SetPendingIRQ(DRV_BOD_IRQ);
}