TOP Contributors

  1. MIKROE (2752 codes)
  2. Alcides Ramos (372 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (139064 times)
  2. FAT32 Library (71594 times)
  3. Network Ethernet Library (56989 times)
  4. USB Device Library (47330 times)
  5. Network WiFi Library (43006 times)
  6. FT800 Library (42297 times)
  7. GSM click (29777 times)
  8. mikroSDK (27874 times)
  9. PID Library (26858 times)
  10. microSD click (26129 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

Step Up 2 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.3

mikroSDK Library: 2.0.0.0

Category: Boost

Downloaded: 32 times

Not followed.

License: MIT license  

Step Up 2 Click is a compact add-on board designed to boost the power capabilities of devices. This board features the TPS61299, a synchronous boost converter from Texas Instruments. This component is renowned for its low quiescent current and high efficiency under light-load conditions. The board distinguishes itself with the ability to adjust output voltage via the integrated MAX5419 digital potentiometer, offering precise control through an I2C interface. It supports external voltages from 0.2V to 5.5V, delivering a regulated output range of 1.8V to 5.5V.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Step Up 2 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Step Up 2 Click" changes.

Do you want to report abuse regarding "Step Up 2 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


Step Up 2 Click

Step Up 2 Click is a compact add-on board designed to boost the power capabilities of devices. This board features the TPS61299, a synchronous boost converter from Texas Instruments. This component is renowned for its low quiescent current and high efficiency under light-load conditions. The board distinguishes itself with the ability to adjust output voltage via the integrated MAX5419 digital potentiometer, offering precise control through an I2C interface. It supports external voltages from 0.2V to 5.5V, delivering a regulated output range of 1.8V to 5.5V.

stepup2_click.png

Click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Jan 2024.
  • Type : I2C type

Software Support

We provide a library for the Step Up 2 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

This library contains API for Step Up 2 Click driver.

Standard key functions :

  • stepup2_cfg_setup Config Object Initialization function.

    void stepup2_cfg_setup ( stepup2_cfg_t *cfg );
  • stepup2_init Initialization function.

    err_t stepup2_init ( stepup2_t *ctx, stepup2_cfg_t *cfg );
  • stepup2_default_cfg Click Default Configuration function.

    err_t stepup2_default_cfg ( stepup2_t *ctx );

Example key functions :

  • stepup2_set_vout This function sets the voltage output level.

    err_t stepup2_set_vout ( stepup2_t *ctx, stepup2_vout_t vout );
  • stepup2_set_resistance This function sets a desired resistance by writing to the volatile memory register and the wiper position.

    err_t stepup2_set_resistance ( stepup2_t *ctx, float res_kohm );
  • stepup2_enable This function turns on the power switch and enables the boost mode.

    void stepup2_enable ( stepup2_t *ctx );

Example Description

This example demonstrates the use of the Step Up 2 Click board by changing the output voltage.

The demo application is composed of two sections :

Application Init

Initialization of I2C module and log UART. After driver initialization, the app executes a default configuration.

void application_init ( void ) 
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    stepup2_cfg_t stepup2_cfg;  /**< Click config object. */

    /** 
     * Logger initialization.
     * Default baud rate: 115200
     * Default log level: LOG_LEVEL_DEBUG
     * @note If USB_UART_RX and USB_UART_TX 
     * are defined as HAL_PIN_NC, you will 
     * need to define them manually for log to work. 
     * See @b LOG_MAP_USB_UART macro definition for detailed explanation.
     */
    LOG_MAP_USB_UART( log_cfg );
    log_init( &logger, &log_cfg );
    log_info( &logger, " Application Init " );

    // Click initialization.
    stepup2_cfg_setup( &stepup2_cfg );
    STEPUP2_MAP_MIKROBUS( stepup2_cfg, MIKROBUS_1 );
    if ( I2C_MASTER_ERROR == stepup2_init( &stepup2, &stepup2_cfg ) ) 
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    if ( STEPUP2_ERROR == stepup2_default_cfg ( &stepup2 ) )
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

    log_info( &logger, " Application Task " );
}

Application Task

The demo application changes the output voltage and displays the current voltage output value. Results are being sent to the UART Terminal, where you can track their changes.

void application_task ( void ) 
{
    float vout_table[ 15 ] = { STEPUP2_VOUT_LIST };
    for ( stepup2_vout_t vout = STEPUP2_VOUT_5V5; vout <= STEPUP2_VOUT_3V3; vout++ )
    {
        if ( STEPUP2_OK == stepup2_set_vout( &stepup2, vout ) )
        {
            log_printf( &logger, " Voltage: %.2f[V]\r\n\n", vout_table[ vout ] );
            Delay_ms ( 1000 );
            Delay_ms ( 1000 );
            Delay_ms ( 1000 );
            Delay_ms ( 1000 );
            Delay_ms ( 1000 );
        }
    }
}

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.StepUp2

Additional notes and informations

Depending on the development board you are using, you may need USB UART Click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.


ALSO FROM THIS AUTHOR

DAC 19 Click

0

DAC 19 Click is a compact add-on board designed for high-performance voltage-output applications. This board features the DAC53701-Q1, a 10-bit automotive-grade DAC from Texas Instruments, offering smart functionality through force-sense output, GPI function trigger, PWM output, and integrated nonvolatile memory (NVM). The board supports an internal or power supply reference, provides a full-scale output range, and communicates efficiently with microcontrollers using an I2C interface with up to 1MHz clock speed.

[Learn More]

AudioAmp 3 Click

0

AudioAmp 3 Click is a stereo audio amplifier, capable of delivering up to 79W per channel with the 4Ω load.

[Learn More]

TE Connectivity Sensor Demo Example

0

This example demonstrates the usage of several TE connectivity sensors such as Piezo Accel Click, Ultra-Low Press Click, Temp&amp;amp;Hum14 Click boards on a Fusion for ARM v8 development system.

[Learn More]