efuse5  2.1.0.0
Main Page

eFuse 5 click

eFuse 5 Click is a compact add-on board with a power path protection solution that limits circuit currents and voltages to safe levels during fault conditions. This board features the TPS16530, an easy-to-use, positive 58V, 4.5A eFuse with a 31mΩ integrated FET from Texas Instruments. This industrial eFuse has programmable undervoltage, overcurrent, inrush current protection, and output current monitoring features. Besides, it allows flexibility to configure the device between the two current-limiting fault responses (latch off and auto-retry).

click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Feb 2023.
  • Type : I2C type

Software Support

We provide a library for the eFuse 5 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 eFuse 5 Click driver.

Standard key functions :

Example key functions :

Example Description

This library contains API for the eFuse 5 Click driver. This driver provides the functions to set the current limiting conditions to provide the threshold of the fault conditions.

The demo application is composed of two sections :

Application Init

Initialization of I2C module and log UART. After driver initialization, default settings turn on the device.

void application_init ( void )
{
log_cfg_t log_cfg;
efuse5_cfg_t efuse5_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
efuse5_cfg_setup( &efuse5_cfg );
EFUSE5_MAP_MIKROBUS( efuse5_cfg, MIKROBUS_1 );
if ( I2C_MASTER_ERROR == efuse5_init( &efuse5, &efuse5_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
if ( EFUSE5_ERROR == efuse5_default_cfg( &efuse5 ) )
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
log_printf( &logger, "---------------------------\r\n" );
}

Application Task

This example demonstrates the use of the eFuse 5 Click board™. In this example, the app sets the current limit to 600 mA for 10 seconds and then sets the current limit to 1200 mA for the next 10 seconds to protect the electrical circuit against excessive current. Results are being sent to the UART Terminal, where you can track their changes.

void application_task ( void )
{
{
log_printf( &logger, " Current limit: 600 mA \r\n" );
log_printf( &logger, "---------------------------\r\n" );
}
Delay_ms( 10000 );
{
log_printf( &logger, " Current limit: 1200 mA \r\n" );
log_printf( &logger, "---------------------------\r\n" );
}
Delay_ms( 10000 );
}

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.eFuse5

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.


efuse5_cfg_t
eFuse 5 Click configuration object.
Definition: efuse5.h:155
efuse5_default_cfg
err_t efuse5_default_cfg(efuse5_t *ctx)
eFuse 5 default configuration function.
EFUSE5_MAP_MIKROBUS
#define EFUSE5_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition: efuse5.h:117
efuse5_set_resistance
err_t efuse5_set_resistance(efuse5_t *ctx, uint16_t res_ohm)
eFuse 5 set the resistance function.
EFUSE5_ERROR
@ EFUSE5_ERROR
Definition: efuse5.h:195
efuse5_get_fault
uint8_t efuse5_get_fault(efuse5_t *ctx)
eFuse 5 gets fault condition state function.
application_task
void application_task(void)
Definition: main.c:71
efuse5_current_limit_t
efuse5_current_limit_t
eFuse 5 Click current limit value data.
Definition: efuse5.h:174
efuse5_set_current_limit
err_t efuse5_set_current_limit(efuse5_t *ctx, efuse5_current_limit_t current_limit)
eFuse 5 set the current limit function.
EFUSE5_CURRENT_LIMIT_600_mA
@ EFUSE5_CURRENT_LIMIT_600_mA
Definition: efuse5.h:175
efuse5_t
eFuse 5 Click context object.
Definition: efuse5.h:133
application_init
void application_init(void)
Definition: main.c:34
efuse5_init
err_t efuse5_init(efuse5_t *ctx, efuse5_cfg_t *cfg)
eFuse 5 initialization function.
EFUSE5_CURRENT_LIMIT_1200_mA
@ EFUSE5_CURRENT_LIMIT_1200_mA
Definition: efuse5.h:180
EFUSE5_OK
@ EFUSE5_OK
Definition: efuse5.h:194
efuse5_cfg_setup
void efuse5_cfg_setup(efuse5_cfg_t *cfg)
eFuse 5 configuration object setup function.