Front End Module Voltage Detection#

APIs for configuring and detecting a voltage from a Front End Module (VDET).

The rail_util_vdet plugin lets customers measure an output voltage from their attached Front End Module at a specific time in a Tx packet. This information allows optimizations to power configuration, and monitoring FEM performance.

Note

  • VDET is only supported with EFR32XG25 devices.

Modules#

RAIL_VdetConfig_t

Enumerations#

enum
RAIL_VDET_MODE_DISABLED = 0
RAIL_VDET_MODE_AUTOMATIC = 1
RAIL_VDET_MODE_IMMEDIATE = 2
RAIL_VDET_MODE_COUNT
}

VDET Modes.

enum
RAIL_VDET_RESOLUTION_10_BIT = 0
RAIL_VDET_RESOLUTION_11_BIT = 1
RAIL_VDET_RESOLUTION_12_BIT = 2
RAIL_VDET_RESOLUTION_COUNT
}

VDET Resolution for the AuxADC.

enum
RAIL_VDET_STATUS_IDLE = 0
RAIL_VDET_STATUS_START = 1
RAIL_VDET_STATUS_10_BIT_DONE = 2
RAIL_VDET_STATUS_11_BIT_DONE = 3
RAIL_VDET_STATUS_12_BIT_DONE = 4
RAIL_VDET_STATUS_ERROR = 5
RAIL_VDET_STATUS_COUNT
}

VDET Status.

Functions#

RAIL_ConfigVdet(RAIL_Handle_t genericRailHandle, const RAIL_VdetConfig_t *config)

Configure the VDET plugin.

RAIL_GetVdetConfig(RAIL_Handle_t genericRailHandle, RAIL_VdetConfig_t *config)

Get the VDET plugin configuration.

RAIL_EnableVdet(RAIL_Handle_t genericRailHandle, bool enable)

Enable the VDET plugin.

bool
RAIL_IsVdetEnabled(RAIL_Handle_t genericRailHandle)

Check if the VDET plugin is enabled.

RAIL_GetVdet(RAIL_Handle_t genericRailHandle, uint32_t *pVdetMv)

Get VDET measurement.

Macros#

#define

A macro that is string versions of the calibration enums.

#define

A macro that is string versions of the resolution enums.

#define

A macro that is string versions of the status enums.

Enumeration Documentation#

RAIL_Vdet_Mode_t#

RAIL_Vdet_Mode_t

VDET Modes.

The VDET Mode is passed to RAIL_ConfigVdet() via RAIL_VdetConfig_t. The Front End Module Voltage Detection (VDET) Utility allows customers to measure their Front End Module performance at specified points in the Transmit packet.

Enumerator
RAIL_VDET_MODE_DISABLED

VDET is completely disabled.

RAIL_VDET_MODE_AUTOMATIC

VDET_AUTOMATIC causes VDET measurements to be taken every Tx packet at the specified time.

RAIL_VDET_MODE_IMMEDIATE

VDET_IMMEDIATE causes an immediate VDET measurement.

RAIL_VDET_MODE_COUNT

A count of the choices in this enumeration.


Definition at line 5561 of file common/rail_types.h

RAIL_Vdet_Resolution_t#

RAIL_Vdet_Resolution_t

VDET Resolution for the AuxADC.

The VDET Resolution is passed to RAIL_ConfigVdet() via RAIL_VdetConfig_t. Shows available resolution options.

Enumerator
RAIL_VDET_RESOLUTION_10_BIT

~10 bit resolution.

RAIL_VDET_RESOLUTION_11_BIT

~11 bit resolution.

RAIL_VDET_RESOLUTION_12_BIT

~12 bit resolution.

RAIL_VDET_RESOLUTION_COUNT

A count of the choices in this enumeration.


Definition at line 5597 of file common/rail_types.h

RAIL_Vdet_Status_t#

RAIL_Vdet_Status_t

VDET Status.

The VDET Status for internal debug. Shows states.

Enumerator
RAIL_VDET_STATUS_IDLE

IDLE - Waiting for next command/measurement.

RAIL_VDET_STATUS_START

START of the VDET measurement activity.

RAIL_VDET_STATUS_10_BIT_DONE

Completion of a 10 bit measurement.

RAIL_VDET_STATUS_11_BIT_DONE

Completion of a 11 bit measurement.

RAIL_VDET_STATUS_12_BIT_DONE

Completion of a 12 bit measurement.

RAIL_VDET_STATUS_ERROR

An error has occurred.

RAIL_VDET_STATUS_COUNT

A count of the choices in this enumeration.


Definition at line 5634 of file common/rail_types.h

Function Documentation#

RAIL_ConfigVdet#

RAIL_Status_t RAIL_ConfigVdet (RAIL_Handle_t genericRailHandle, const RAIL_VdetConfig_t * config)

Configure the VDET plugin.

Parameters
[in]genericRailHandle

A radio-generic RAIL handle.

[in]config

A pointer to a RAIL_VdetConfig_t struct that contains configuration data for the VDET.

Returns


Definition at line 6131 of file common/rail.h

RAIL_GetVdetConfig#

RAIL_Status_t RAIL_GetVdetConfig (RAIL_Handle_t genericRailHandle, RAIL_VdetConfig_t * config)

Get the VDET plugin configuration.

Parameters
[in]genericRailHandle

A radio-generic RAIL handle.

[out]config

A pointer to a RAIL_VdetConfig_t struct that will return configuration data for the VDET.

Returns

  • RAIL_Status_t


Definition at line 6143 of file common/rail.h

RAIL_EnableVdet#

RAIL_Status_t RAIL_EnableVdet (RAIL_Handle_t genericRailHandle, bool enable)

Enable the VDET plugin.

Parameters
[in]genericRailHandle

A RAIL instance handle.

[in]enable

Enable or disable RAIL_VDET_MODE_AUTOMATIC mode captures. Begins measurement if in RAIL_VDET_MODE_IMMEDIATE.

Returns


Definition at line 6156 of file common/rail.h

RAIL_IsVdetEnabled#

bool RAIL_IsVdetEnabled (RAIL_Handle_t genericRailHandle)

Check if the VDET plugin is enabled.

Parameters
[in]genericRailHandle

A RAIL instance handle.

Returns

  • bool


Definition at line 6165 of file common/rail.h

RAIL_GetVdet#

RAIL_Status_t RAIL_GetVdet (RAIL_Handle_t genericRailHandle, uint32_t * pVdetMv)

Get VDET measurement.

Parameters
[in]genericRailHandle

A RAIL instance handle.

[out]pVdetMv

A pointer to a uint32_t for returning the measurement.

A processed measurement in millivolts.

Returns


Definition at line 6181 of file common/rail.h

Macro Definition Documentation#

RAIL_VDET_MODE_ENUM_NAMES#

#define RAIL_VDET_MODE_ENUM_NAMES
Value:
{ \
"RAIL_VDET_MODE_DISABLED", \
"RAIL_VDET_MODE_AUTOMATIC", \
"RAIL_VDET_MODE_IMMEDIATE", \
}

A macro that is string versions of the calibration enums.


Definition at line 5584 of file common/rail_types.h

RAIL_VDET_RESOLUTION_ENUM_NAMES#

#define RAIL_VDET_RESOLUTION_ENUM_NAMES
Value:
{ \
"RAIL_VDET_RESOLUTION_10_BIT", \
"RAIL_VDET_RESOLUTION_11_BIT", \
"RAIL_VDET_RESOLUTION_12_BIT", \
}

A macro that is string versions of the resolution enums.


Definition at line 5620 of file common/rail_types.h

RAIL_VDET_STATUS_ENUM_NAMES#

#define RAIL_VDET_STATUS_ENUM_NAMES
Value:
{ \
"RAIL_VDET_STATUS_IDLE", \
"RAIL_VDET_STATUS_START", \
"RAIL_VDET_STATUS_10_BIT_DONE", \
"RAIL_VDET_STATUS_11_BIT_DONE", \
"RAIL_VDET_STATUS_12_BIT_DONE", \
"RAIL_VDET_STATUS_ERROR", \
}

A macro that is string versions of the status enums.


Definition at line 5666 of file common/rail_types.h