profet10a 2.0.0.0
Main Page

PROFET 10A click

PROFET Click is a compact add-on board that contains a smart high-side power switch. This board features the BTS7008-1EPA, a single-channel, high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. This switch has a driving capability suitable for 10A loads featuring a ReverSave™, which causes the power transistor to switch on in case of reverse polarity.

click Product page


Click library

  • Author : Luka Filipovic
  • Date : Jun 2021.
  • Type : ADC type

Software Support

We provide a library for the PROFET 10A 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 PROFET 10A Click driver.

Standard key functions :

Example key functions :

Example Description

‍This example showcases the ability of the PROFET 10A Click board.

It configures Host MCU for communication and then enables and disables output channel. Besides that, it reads the voltage of IS pin and calculates current on output.

The demo application is composed of two sections :

Application Init

‍Initialization of the communication modules(ADC and UART)

and additional pins for controlling the device.

void application_init ( void )
{
log_cfg_t log_cfg;
profet10a_cfg_t profet10a_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
profet10a_cfg_setup( &profet10a_cfg );
PROFET10A_MAP_MIKROBUS( profet10a_cfg, MIKROBUS_1 );
if ( profet10a_init( &profet10a, &profet10a_cfg ) == ADC_ERROR )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
Delay_ms ( 1000 );
}
#define PROFET10A_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition profet10a.h:95
#define PROFET10A_DIAGNOSTIC_ON
Definition profet10a.h:75
void application_init(void)
Definition main.c:39

Application Task

‍On every iteration of the task device switches between

DIAGNOSTIC and OFF mode while it reads the voltage of IS pin and with that calculates current on output.

void application_task ( void )
{
static uint8_t mode = PROFET10A_DIAGNOSTIC_ON;
float profet10a_an_voltage = 0;
profet10a_set_mode( &profet10a, mode );
if ( PROFET10A_DIAGNOSTIC_ON == profet10a.mode )
{
log_printf( &logger, " > Output ON diagnostic mode\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
else
{
log_printf( &logger, " > Output OFF\r\n" );
}
if ( profet10a_read_an_pin_voltage ( &profet10a, &profet10a_an_voltage ) != ADC_ERROR )
{
log_printf( &logger, " > IS Voltage \t~ %.3f[V]\r\n", profet10a_an_voltage );
float current = profet10a_an_voltage * profet10a.kilis / profet10a.rsens;
log_printf( &logger, " > OUT Current \t~ %.3f[A]\r\n", current );
}
log_printf( &logger, "*******************************************\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define PROFET10A_MODE_OFF
Definition profet10a.h:74
void application_task(void)
Definition main.c:74

Note

‍Formula for calculating current on load:

I_load = voltage(IS) x kILIS / 1.2 kΩ

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

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.