Skip to content

Latest commit

 

History

History
175 lines (134 loc) · 5.43 KB

README.md

File metadata and controls

175 lines (134 loc) · 5.43 KB

PROFET 2 3A Click

PROFET 2 3A Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

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

Software Support

Example Description

This example showcases the ability of the PROFET 2 3A 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 for the channel 0.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.PROFET23A

Example Key Functions

  • profet23a_cfg_setup Config Object Initialization function.
void profet23a_cfg_setup ( profet23a_cfg_t *cfg );
  • profet23a_init Initialization function.
err_t profet23a_init ( profet23a_t *ctx, profet23a_cfg_t *cfg );
  • profet23a_default_cfg Click Default Configuration function.
void profet23a_default_cfg ( profet23a_t *ctx );
  • profet23a_set_mode Set mode device mode for specific channel channel.
err_t profet23a_set_mode ( profet23a_t *ctx, profet23a_channel_t channel, uint8_t mode );
  • profet23a_read_an_pin_voltage Read AN pin voltage level function.
err_t profet23a_read_an_pin_voltage ( profet23a_t *ctx, float *data_out );
  • profet23a_set_den Set diagnostic enable pin state.
void profet23a_set_den ( profet23a_t *ctx, uint8_t state );

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;  /**< Logger config object. */
    profet23a_cfg_t profet23a_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.
    profet23a_cfg_setup( &profet23a_cfg );
    PROFET23A_MAP_MIKROBUS( profet23a_cfg, MIKROBUS_1 );
    if ( ADC_ERROR == profet23a_init( &profet23a, &profet23a_cfg ) )
    {
        log_error( &logger, " Application Init Error. " );
        log_info( &logger, " Please, run program again... " );

        for ( ; ; );
    }
    profet23a_default_cfg ( &profet23a );
    log_info( &logger, " Application Task " );
    Delay_ms ( 1000 );
}

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 for channel 0.

void application_task ( void ) 
{
    static uint8_t mode = PROFET23A_DIAGNOSTIC_ON;
    float profet23a_an_voltage = 0;
    
    err_t error_val = profet23a_set_mode( &profet23a, PROFET23A_CHANNEL_0, mode );
    
    if ( error_val )
    {
        log_error( &logger, "Channe/Mode" );
    }
    
    if ( PROFET23A_DIAGNOSTIC_ON == profet23a.mode )
    {
        mode = PROFET23A_MODE_OFF;
        log_printf( &logger, " > Output ON Channel %u in diagnostic mode\r\n", ( uint16_t )profet23a.channel );
        Delay_ms ( 1000 );
    }
    else
    {
        mode = PROFET23A_DIAGNOSTIC_ON;
        log_printf( &logger, " > Output OFF\r\n" );
    }

    if ( profet23a_read_an_pin_voltage ( &profet23a, &profet23a_an_voltage ) != ADC_ERROR )
    {
        log_printf( &logger, " > IS Voltage \t~ %.3f[V]\r\n", profet23a_an_voltage );
        
        float current = profet23a_an_voltage * profet23a.kilis / profet23a.rsens;
        log_printf( &logger, " > OUT Current \t~ %.3f[A]\r\n", current );
    }  
    
    log_printf( &logger, "*******************************************\r\n" );
    
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
}

Note

Formula for calculating current on load: I_load = voltage(IS) x kILIS(1800) / rsens(1.2 kΩ)

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.