1.2.5.51 ADP_RouteDiscoveryRequest Function
C
void ADP_RouteDiscoveryRequest (
    uint16_t dstAddr,
    uint8_t maxHops
);Summary
This primitive allows the upper layer to initiate a route discovery.
Description
The ADP Route Discovery Request primitive allows the upper layer to initiate a route discovery. Result is provided in the corresponding ADP Route Discovery Confirm callback.
Parameters
| Param | Description | 
|---|---|
| dstAddr | The short unicast destination address of the route discovery | 
| maxHops | This parameter indicates the maximum number of hops allowed for the route discovery (Range: 0x01 - 0x0E) | 
Returns
None.
Example
ADP_RouteDiscoveryRequest(0x0001, 8); // Wait for Route Discovery Confirm
Remarks
None.
