pub unsafe extern "C" fn otNcpRegisterPeekPokeDelegates(
    aAllowPeekDelegate: otNcpDelegateAllowPeekPoke,
    aAllowPokeDelegate: otNcpDelegateAllowPeekPoke
)
Expand description

Registers peek/poke delegate functions with NCP module.

The delegate functions are called by NCP module to decide whether to allow peek or poke of a specific memory region. If the delegate pointer is set to NULL, it allows peek/poke operation for any address.

@param[in] aAllowPeekDelegate Delegate function pointer for peek operation. @param[in] aAllowPokeDelegate Delegate function pointer for poke operation.