> ## Documentation Index
> Fetch the complete documentation index at: https://notevil.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CAPLfunctionLINtpDataReq

[Open topic with navigation](../../../../../CANoeDEFamily.htm#Topics/CAPLFunctions/LIN/Functions/CAPLfunctionLINtpDataReq.md)

**CAPL Functions** » [LIN](../CAPLfunctionsLINOverview.md) » LINtp\_DataReq

# LINtp\_DataReq

[Valid for](../../../Shared/FeatureAvailability.md):  CANoe DE • CANoe4SW DE

## Function Syntax

```plaintext theme={null}
void LINtp_DataReq(byte data[], long numData, long NAD);
```

## Description

Send the given data. Once all data has been sent, the callback [LINtp\_DataCon](CAPLfunctionLINtpDataCon.md) is called. If there has been an error, [LINtp\_ErrorInd](CAPLfunctionLINtpErrorInd.md) is called.

## Parameters

* **data**: Data to send.
* **numData**: Number of bytes to send.
* **NAD**: Slave node address

## Return Values

—

## Example

```plaintext theme={null}
BYTE data[20];
LINtp_DataReq( data, elcount(data), 0x12);
```
