2.24 SENT TX Driver

Overview

Single-Edge Nibble Transmission(SENT) is a unidirectional, single-wire communications protocol that is based on SAE J2716. The protocol is designed for point-to-point transmission of signal values, using a signal system based on successive falling edges.

Features

  • Driver supports two main modes of operation
    • Asynchronous transmitter (default)
    • Synchronous transmitter
  • Hardware calculation of CRC .
  • Pause Pulse period.
  • Requested Nominal Tick Time range varies based on the clock source frequency of the selected PLIB .

2.24.1 Module Documentation

2.24.1.1 SENT TX Driver

SENT Transmit driver. The Single-Edge Nibble Transmission for Automotive Applications is based on the SAE J2716. It is intended for use in applications where high-resolution sensor data need to be communicated using dsPIC MCUs.

2.24.1.1.1 Module description

SENT Transmit driver. The Single-Edge Nibble Transmission for Automotive Applications is based on the SAE J2716. It is intended for use in applications where high-resolution sensor data need to be communicated using dsPIC MCUs.

Data structures
Enumerations
Functions

2.24.1.1.2 Function Documentation

SENT1_Deinitialize()

void SENT1_Deinitialize (void )

Deinitializes the SENT1 to POR values.

Parameters:
none
Returns:

none

SENT1_Disable()

void SENT1_Disable (void )

Disables the SENT1 module.

Parameters:
none
Returns:

none

SENT1_Enable()

void SENT1_Enable (void )

Enables the SENT1 module.

Parameters:
none
Returns:

none

SENT1_ErrorCallback()

void SENT1_ErrorCallback (void )

This is the default callback with weak attribute. The user can override and implement the default callback without weak attribute or can register a custom callback function using SENT1_ErrorCallbackRegister.

Parameters:
none
Returns:

none

SENT1_ErrorCallbackRegister()

void SENT1_ErrorCallbackRegister (void * handler)

This function can be used to override default callback and to define custom callback for SENT1 Error event.

Parameters:
in handler

- Address of the callback function

Returns:

none

SENT1_Initialize()

void SENT1_Initialize (void )

Initializes the SENT module.

Parameters:
none
Returns:

none

SENT1_IsTransmissionComplete()

bool SENT1_IsTransmissionComplete (void )

Returns the transmit complete status.

Parameters:
none
Returns:

true - SENT transmit completed

false - SENT transmit not completed

SENT1_Transmit()

void SENT1_Transmit (const struct SENT_DATA_TRANSMIT * sentData)

Writes the SENT data to receiver.

Parameters:
in sentData

- Structure which contains the data to be sent

Returns:

none

SENT1_TransmitCompleteCallback()

void SENT1_TransmitCompleteCallback (void )

This is the default callback with weak attribute. The user can override and implement the default callback without weak attribute or can register a custom callback function using SENT1_TransmitCompleteCallbackRegister.

Parameters:
none
Returns:

none

SENT1_TransmitCompleteCallbackRegister()

void SENT1_TransmitCompleteCallbackRegister (void * handler)

This function can be used to override default callback and to define custom callback for SENT1 TransmitComplete event.

Parameters:
in handler

- Address of the callback function

Returns:

none

SENT1_TransmitModeSet()

void SENT1_TransmitModeSet (enum SENT_TRANSMIT_MODE mode)

Sets the SENT transmit mode.

Parameters:
in mode

- SENT Synchronous or Asynchronous

Returns:

none

SENT1_TransmitStatusGet()

enum SENT_TRANSMIT_STATUS SENT1_TransmitStatusGet (void )

Gets the transmission status of the SENT module.

Parameters:
none
Returns:

Returns the SENT module transmission status SENT_TRANSMIT_STATUS

2.24.1.1.3 Enumeration Type Documentation

SENT_TRANSMIT_MODE

enum SENT_TRANSMIT_MODE

Defines the SENT transmission mode (Asynchronous and Synchronous)

SENT_TRANSMIT_ASYNCHRONOUS
SENT_TRANSMIT_SYNCHRONOUS
SENT_TRANSMIT_STATUS

enum SENT_TRANSMIT_STATUS

Defines the SENT transmit status. More than one of these values may be OR'd together to create a complete status value. To test a value of this type, the bit of interest must be AND'ed with value and checked to see if the result is non-zero.

SENT_TRANSMIT_SYNCTXEN

Synchronization Period Status Transmit Enable bit

SENT_TRANSMIT_NIBBLE1

Module is transmitting Data Nibble 1

SENT_TRANSMIT_NIBBLE2

Module is transmitting Data Nibble 2

SENT_TRANSMIT_NIBBLE3

Module is transmitting Data Nibble 3

SENT_TRANSMIT_NIBBLE4

Module is transmitting Data Nibble 4

SENT_TRANSMIT_NIBBLE5

Module is transmitting Data Nibble 5

SENT_TRANSMIT_NIBBLE6

Module is transmitting Data Nibble 6

SENT_TRANSMIT_CRC

Module is transmitting Data CRC

SENT_TRANSMIT_PAUSEPERIOD

Indicates whether the module is transmitting a Pause period

2.24.1.1.4 Variable Documentation

SENT1_TX

const struct SENT_TRANSMIT_INTERFACE SENT1_TX

Structure object of type SENT_TRANSMIT_INTERFACE with the custom name given by the user in the Melody Driver User interface.

The default name can be changed by the user in the SENT user interface. This allows defining a structure with application specific name using the 'Custom Name' field. Application specific name allows the API Portability.

2.24.2 Class Documentation

2.24.2.1 SENT_DATA_TRANSMIT Struct Reference

This data structure used to configure the SENT data packet.

2.24.2.1.1 Detailed Description

This data structure used to configure the SENT data packet.

#include <sent_tx_types.h>

2.24.2.1.2 Member Data Documentation

The documentation for this struct was generated from the following file:

source/

sent_tx_types.h

crc

unsigned crc

Defines the CRC field

data1

unsigned data1

Defines the first data nibble field

data2

unsigned data2

Defines the second data nibble field

data3

unsigned data3

Defines the third data nibble field

data4

unsigned data4

Defines the fourth data nibble field

data5

unsigned data5

Defines the fifth data nibble field

data6

unsigned data6

Defines the sixth data nibble field

status

unsigned status

Defines the status field

2.24.2.2 SENT_TRANSMIT_INTERFACE Struct Reference

Structure containing the function pointers of SENT driver in transmit mode.

2.24.2.2.1 Detailed Description

Structure containing the function pointers of SENT driver in transmit mode.

#include <sent_tx_interface.h>

Public Attributes

2.24.2.2.2 Member Data Documentation

The documentation for this struct was generated from the following file:

source/

sent_tx_interface.h

Deinitialize

void(* Deinitialize) (void)

Pointer to SENTx_Deinitialize e.g. SENT1_Deinitialize.

Disable

void(* Disable) (void)

Pointer to SENTx_Disable e.g. SENT1_Disable.

Enable

void(* Enable) (void)

Pointer to SENTx_Enable e.g. SENT1_Enable.

ErrorCallbackRegister

void(* ErrorCallbackRegister) (void *handler)

Pointer to SENTx_ErrorCallbackRegister e.g. SENT1_ErrorCallbackRegister.

Initialize

void(* Initialize) (void)

Pointer to SENTx_Initialize e.g. SENT1_Initialize.

Tasks

void(* Tasks) (void)

Pointer to SENTx_Tasks e.g. SENT1_Tasks (Supported only in polling mode)

Transmit

void(* Transmit) (const struct SENT_DATA_TRANSMIT *sentData)

Pointer to SENTx_Transmit e.g. SENT1_Transmit.

TransmitModeSet

void(* TransmitModeSet) (enum SENT_TRANSMIT_MODE mode)

Pointer to SENTx_TransmitModeSet e.g. SENT1_TransmitModeSet.

TransmitStatusGet

enum SENT_TRANSMIT_STATUS(* TransmitStatusGet) (void)

Pointer to SENTx_TransmitStatusGet e.g. SENT1_TransmitStatusGet.

2.24.3 File Documentation

2.24.3.1 source/sent1.h File Reference

This is the generated driver header file for the SENT1 driver.

#include <xc.h>
#include <stdbool.h>
#include <stdint.h>
#include "sent_tx_types.h"
#include "sent_tx_interface.h"

2.24.3.1.1 Functions

2.24.3.1.3 Detailed Description

This is the generated driver header file for the SENT1 driver.

SENT1 Generated Driver Header File

2.24.3.2 source/sent_tx_interface.h File Reference

#include <stdbool.h>
#include <stdint.h>
#include "sent_tx_types.h"

2.24.3.2.1 Data structures

2.24.3.3 source/sent_tx_types.h File Reference

This is the generated driver types header file for the SENT driver.

2.24.3.3.1 Data structures

2.24.3.3.2 Enumerations

2.24.3.3.3 Detailed Description

This is the generated driver types header file for the SENT driver.

SENT Generated Driver Types Header File