MTB CAT1 Peripheral driver library

General Description

Functions

void Cy_GPIO_SetAmuxSplit (cy_en_amux_split_t switchCtrl, cy_en_gpio_amuxconnect_t amuxConnect, cy_en_gpio_amuxselect_t amuxBus)
 Configure a specific AMux bus splitter switch cell into a specific configuration. More...
 
cy_en_gpio_amuxconnect_t Cy_GPIO_GetAmuxSplit (cy_en_amux_split_t switchCtrl, cy_en_gpio_amuxselect_t amuxBus)
 Returns the configuration of a specific AMux bus splitter switch cell. More...
 
uint32_t Cy_GPIO_Read (GPIO_PRT_Type *base, uint32_t pinNum)
 Reads the current logic level on the input buffer of the pin. More...
 
void Cy_GPIO_Write (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Write a logic 0 or logic 1 state to the output driver. More...
 
uint32_t Cy_GPIO_ReadOut (GPIO_PRT_Type *base, uint32_t pinNum)
 Reads the current logic level on the pin output driver. More...
 
void Cy_GPIO_Set (GPIO_PRT_Type *base, uint32_t pinNum)
 Set a pin output to logic state high. More...
 
void Cy_GPIO_Clr (GPIO_PRT_Type *base, uint32_t pinNum)
 Set a pin output to logic state Low. More...
 
void Cy_GPIO_Inv (GPIO_PRT_Type *base, uint32_t pinNum)
 Set a pin output logic state to the inverse of the current output logic state. More...
 
void Cy_GPIO_SetDrivemode (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Configures the pin output buffer drive mode and input buffer enable. More...
 
uint32_t Cy_GPIO_GetDrivemode (GPIO_PRT_Type *base, uint32_t pinNum)
 Returns the pin output buffer drive mode and input buffer enable state. More...
 
void Cy_GPIO_SetVtrip (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Configures the GPIO pin input buffer voltage threshold mode. More...
 
uint32_t Cy_GPIO_GetVtrip (GPIO_PRT_Type *base, uint32_t pinNum)
 Returns the pin input buffer voltage threshold mode. More...
 
void Cy_GPIO_SetVtripAuto (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Configures the GPIO pin input buffer for automotive compatible or not. More...
 
uint32_t Cy_GPIO_GetVtripAuto (GPIO_PRT_Type *base, uint32_t pinNum)
 Returns the pin input buffer voltage whether it is automotive compatible or not. More...
 
void Cy_GPIO_SetSlewRate (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Configures the pin output buffer slew rate. More...
 
uint32_t Cy_GPIO_GetSlewRate (GPIO_PRT_Type *base, uint32_t pinNum)
 Returns the pin output buffer slew rate. More...
 
void Cy_GPIO_SetDriveSel (GPIO_PRT_Type *base, uint32_t pinNum, uint32_t value)
 Configures the pin output buffer drive strength. More...
 
uint32_t Cy_GPIO_GetDriveSel (GPIO_PRT_Type *base, uint32_t pinNum)
 Returns the pin output buffer drive strength. More...
 

Function Documentation

◆ Cy_GPIO_SetAmuxSplit()

void Cy_GPIO_SetAmuxSplit ( cy_en_amux_split_t  switchCtrl,
cy_en_gpio_amuxconnect_t  amuxConnect,
cy_en_gpio_amuxselect_t  amuxBus 
)

Configure a specific AMux bus splitter switch cell into a specific configuration.

Parameters
switchCtrlSelects specific AMux bus splitter cell between two segments. The cy_en_amux_split_t enumeration can be found in the GPIO header file for the device package.
amuxConnectSelects configuration of the three switches within the splitter cell
amuxBusSelects which AMux bus within the splitter is being configured
Note
This API is available for the CAT1A and CAT1D devices.

◆ Cy_GPIO_GetAmuxSplit()

cy_en_gpio_amuxconnect_t Cy_GPIO_GetAmuxSplit ( cy_en_amux_split_t  switchCtrl,
cy_en_gpio_amuxselect_t  amuxBus 
)

Returns the configuration of a specific AMux bus splitter switch cell.

Parameters
switchCtrlSelects specific AMux bus splitter cell between two segments. The cy_en_amux_split_t enumeration can be found in the GPIO header file for the device package.
amuxBusSelects which AMux bus within the splitter is being configured
Returns
Returns configuration of the three switches in the selected splitter cell
Note
This API is available for the CAT1A and CAT1D devices.

◆ Cy_GPIO_Read()

uint32_t Cy_GPIO_Read ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Reads the current logic level on the input buffer of the pin.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register. Bit position 8 is the routed pin through the port glitch filter.
Returns
Logic level present on the pin
Function Usage
/* Scenario: P0.3 was initialized and input buffer enabled */
/* Read the input state of P0.3 */
if(1UL == Cy_GPIO_Read(P0_3_PORT, P0_3_NUM))
{
/* Insert logic for High pin state */
}
else
{
/* Insert logic for Low pin state */
}

◆ Cy_GPIO_Write()

void Cy_GPIO_Write ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Write a logic 0 or logic 1 state to the output driver.

This function should be used only for software driven pins. It does not have any effect on peripheral driven pins.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
valueLogic level to drive out on the pin
Function Usage
uint32_t pinState = 0UL;
/* Control P0.3 based on the pinState variable */
Cy_GPIO_Write(P0_3_PORT, P0_3_NUM, pinState);

◆ Cy_GPIO_ReadOut()

uint32_t Cy_GPIO_ReadOut ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Reads the current logic level on the pin output driver.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Logic level on the pin output driver
Function Usage
/* Write logic low to P0.3 */
Cy_GPIO_Write(P0_3_PORT, P0_3_NUM, 0UL);
/* Get the output value of P0.3 */
if(0UL != Cy_GPIO_ReadOut(P0_3_PORT, P0_3_NUM))
{
/* Insert error handling */
}

◆ Cy_GPIO_Set()

void Cy_GPIO_Set ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Set a pin output to logic state high.

This function should be used only for software driven pins. It does not have any effect on peripheral driven pins.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Function Usage
/* Set P0.3 (out value = High) */
Cy_GPIO_Set(P0_3_PORT, P0_3_NUM);

◆ Cy_GPIO_Clr()

void Cy_GPIO_Clr ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Set a pin output to logic state Low.

This function should be used only for software driven pins. It does not have any effect on peripheral driven pins.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Function Usage
/* Clear P0.3 (out value = Low) */
Cy_GPIO_Clr(P0_3_PORT, P0_3_NUM);

◆ Cy_GPIO_Inv()

void Cy_GPIO_Inv ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Set a pin output logic state to the inverse of the current output logic state.

This function should be used only for software driven pins. It does not have any effect on peripheral driven pins.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Function Usage
/* Invert P0.3 (out value = ~(out value)) */
Cy_GPIO_Inv(P0_3_PORT, P0_3_NUM);

◆ Cy_GPIO_SetDrivemode()

void Cy_GPIO_SetDrivemode ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Configures the pin output buffer drive mode and input buffer enable.

The output buffer drive mode and input buffer enable are combined into a single parameter. The drive mode controls the behavior of the pin in general. Enabling the input buffer allows the digital pin state to be read but also contributes to extra current consumption.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
valuePin drive mode. Options are detailed in Pin drive mode macros
Note
This function modifies a port register in a read-modify-write operation. It is not thread safe as the resource is shared among multiple pins on a port.
Function Usage
/* Scenario: Enter deep-sleep with reduced leakage current on P0.3 */
/* Get the drive mode of P0.3 */
if(CY_GPIO_DM_STRONG== Cy_GPIO_GetDrivemode(P0_3_PORT, P0_3_NUM))
{
/* Change the drive mode of P0.3 to analog (hi-z, input buffer off) */
Cy_GPIO_SetDrivemode(P0_3_PORT, P0_3_NUM, CY_GPIO_DM_ANALOG);
}

◆ Cy_GPIO_GetDrivemode()

uint32_t Cy_GPIO_GetDrivemode ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Returns the pin output buffer drive mode and input buffer enable state.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Pin drive mode. Options are detailed in Pin drive mode macros
Function Usage
/* Scenario: Enter deep-sleep with reduced leakage current on P0.3 */
/* Get the drive mode of P0.3 */
if(CY_GPIO_DM_STRONG== Cy_GPIO_GetDrivemode(P0_3_PORT, P0_3_NUM))
{
/* Change the drive mode of P0.3 to analog (hi-z, input buffer off) */
Cy_GPIO_SetDrivemode(P0_3_PORT, P0_3_NUM, CY_GPIO_DM_ANALOG);
}

◆ Cy_GPIO_SetVtrip()

void Cy_GPIO_SetVtrip ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Configures the GPIO pin input buffer voltage threshold mode.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
valuePin voltage threshold mode. Options are detailed in Voltage trip mode macros
Note
This function modifies a port register in a read-modify-write operation. It is not thread safe as the resource is shared among multiple pins on a port.
Function Usage
/* Scenario: Connect the pin to a TTL hardware */
/* Get the vtrip value of P0.3 */
if(CY_GPIO_VTRIP_CMOS == Cy_GPIO_GetVtrip(P0_3_PORT, P0_3_NUM))
{
/* Change the vtrip of P0.3 to LVTTL */
Cy_GPIO_SetVtrip(P0_3_PORT, P0_3_NUM, CY_GPIO_VTRIP_TTL);
}

◆ Cy_GPIO_GetVtrip()

uint32_t Cy_GPIO_GetVtrip ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Returns the pin input buffer voltage threshold mode.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Pin voltage threshold mode. Options are detailed in Voltage trip mode macros
Function Usage
/* Scenario: Connect the pin to a TTL hardware */
/* Get the vtrip value of P0.3 */
if(CY_GPIO_VTRIP_CMOS == Cy_GPIO_GetVtrip(P0_3_PORT, P0_3_NUM))
{
/* Change the vtrip of P0.3 to LVTTL */
Cy_GPIO_SetVtrip(P0_3_PORT, P0_3_NUM, CY_GPIO_VTRIP_TTL);
}

◆ Cy_GPIO_SetVtripAuto()

void Cy_GPIO_SetVtripAuto ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Configures the GPIO pin input buffer for automotive compatible or not.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
valuePin voltage threshold mode. Options are detailed in Voltage trip automotive compatible mode macros
Note
This function modifies a port register in a read-modify-write operation. It is not thread safe as the resource is shared among multiple pins on a port.
This API is available for CAT1B and CAT1C devices. TVIIBE also supports this functionality.
Function Usage
/* Scenario: Assume P0.3 is an SIO pin and that it is paired with P0.2.
Both pins are configured as input pins. The input signals
on P0.2 and P0.3 need to be interpreted as logic 0 or 1 at
0.5 x VDDIO threshold. */
/* Set the input buffer to be differential on the P0.2/P0.3 SIO pair */
/* Choose VREF to be sourced from VDDIO (pin ref) */
Cy_GPIO_SetVrefSel(P0_3_PORT, P0_3_NUM, CY_SIO_VREF_PINREF);
/* Get the input buffer trip-point of P0.2/P0.3 pair */
if(CY_SIO_VTRIP_CMOS == Cy_GPIO_GetVtripSel(P0_3_PORT, P0_3_NUM))
{
/* Set the input buffer trip-point to 0.5 x VDDIO on the P0.2/P0.3 SIO pair */
}

◆ Cy_GPIO_GetVtripAuto()

uint32_t Cy_GPIO_GetVtripAuto ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Returns the pin input buffer voltage whether it is automotive compatible or not.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Pin voltage for automotive or not. Options are detailed in Voltage trip automotive compatible mode macros
Note
This API is available for CAT1B and CAT1C devices.

◆ Cy_GPIO_SetSlewRate()

void Cy_GPIO_SetSlewRate ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Configures the pin output buffer slew rate.

GPIO pins have fast and slow output slew rate options for the strong drivers configured using this API. By default the port works in fast slew mode. Slower slew rate results in reduced EMI and crosstalk and are recommended for low-frequency signals or signals without strict timing constraints.

Note
This function has no effect for the GPIO ports, where the slew rate configuration is not available. Refer to device datasheet for details.
Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
valuePin slew rate. Options are detailed in Slew Rate Mode macros
Note
This function modifies a port register in a read-modify-write operation. It is not thread safe as the resource is shared among multiple pins on a port.
Function Usage
/* Scenario: Connect the pin to I2C (slow slew rate is preferred for low EMI) */
/* Get the slew rate value of P0.3 */
if(CY_GPIO_SLEW_FAST == Cy_GPIO_GetSlewRate(P0_3_PORT, P0_3_NUM))
{
/* Change the slew rate of P0.3 to Slow */
Cy_GPIO_SetSlewRate(P0_3_PORT, P0_3_NUM, CY_GPIO_SLEW_SLOW);
}

◆ Cy_GPIO_GetSlewRate()

uint32_t Cy_GPIO_GetSlewRate ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Returns the pin output buffer slew rate.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Pin slew rate. Options are detailed in Slew Rate Mode macros
Function Usage
/* Scenario: Connect the pin to I2C (slow slew rate is preferred for low EMI) */
/* Get the slew rate value of P0.3 */
if(CY_GPIO_SLEW_FAST == Cy_GPIO_GetSlewRate(P0_3_PORT, P0_3_NUM))
{
/* Change the slew rate of P0.3 to Slow */
Cy_GPIO_SetSlewRate(P0_3_PORT, P0_3_NUM, CY_GPIO_SLEW_SLOW);
}

◆ Cy_GPIO_SetDriveSel()

void Cy_GPIO_SetDriveSel ( GPIO_PRT_Type base,
uint32_t  pinNum,
uint32_t  value 
)

Configures the pin output buffer drive strength.

The drive strength field determines the active portion of the output drivers used and can affect the slew rate of output signals. Drive strength options are full drive strength (default), one-half strength, one-quarter strength, and oneeighth strength. Drive strength must be set to full drive strength when the slow slew rate bit (SLOW) is set.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register.
valuePin drive strength. Options are detailed in Pin drive strength macros
Note
This function modifies a port register in a read-modify-write operation. It is not thread safe as the resource is shared among multiple pins on a port.
Function Usage
/* Scenario: Reduce the drive current as part of power conservation strategy */
/* Get the drive current capability of P0.3 */
if(CY_GPIO_DRIVE_FULL == Cy_GPIO_GetDriveSel(P0_3_PORT, P0_3_NUM))
{
/* Change the drive current capability of P0.3 to 1/4 of full strength */
Cy_GPIO_SetDriveSel(P0_3_PORT, P0_3_NUM, CY_GPIO_DRIVE_1_4);
}

◆ Cy_GPIO_GetDriveSel()

uint32_t Cy_GPIO_GetDriveSel ( GPIO_PRT_Type base,
uint32_t  pinNum 
)

Returns the pin output buffer drive strength.

Parameters
basePointer to the pin's port register base address
pinNumPosition of the pin bit-field within the port register
Returns
Pin drive strength. Options are detailed in Pin drive strength macros
Function Usage
/* Scenario: Reduce the drive current as part of power conservation strategy */
/* Get the drive current capability of P0.3 */
if(CY_GPIO_DRIVE_FULL == Cy_GPIO_GetDriveSel(P0_3_PORT, P0_3_NUM))
{
/* Change the drive current capability of P0.3 to 1/4 of full strength */
Cy_GPIO_SetDriveSel(P0_3_PORT, P0_3_NUM, CY_GPIO_DRIVE_1_4);
}