c2x5wamp  2.0.0.0
Main Page

2X5W AMP click

2x5W AMP click functions as an amplifier and features the TDA7491LP 2x5-watt dual BTL class-D audio amplifier. The click is designed to run on either 3.3V or 5V power supply. It communicates with the target MCU over the following pins on the mikroBUS™ line: AN, RST, CS, PWM, INT.

click Product page


Click library

  • Author : MikroE Team
  • Date : Jan 2020.
  • Type : GPIO type

Software Support

We provide a library for the 2x5WAmp 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 form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.

Library Description

This library contains API for 2x5WAmp Click driver.

Standard key functions :

  • Config Object Initialization function.

    void c2x5wamp_cfg_setup ( c2x5wamp_cfg_t *cfg );

  • Initialization function.

    C2X5WAMP_RETVAL c2x5wamp_init ( c2x5wamp_t *ctx, c2x5wamp_cfg_t *cfg );

  • Click Default Configuration function.

    void c2x5wamp_default_cfg ( c2x5wamp_t *ctx );

Example key functions :

The demo application is composed of two sections :

Application Init

Initializes GPIO and LOG structures, set INT pin as input and sets AN, RST, CS and PWM pins as output.

void application_init ( void )
{
log_cfg_t log_cfg;
// Logger initialization.
log_cfg.level = LOG_LEVEL_DEBUG;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_printf( &logger, "-- Application Init --\r\n" );
Delay_ms( 100 );
log_printf( &logger, "-----------------------\r\n" );
log_printf( &logger, " 2x5W Amp Click \r\n" );
log_printf( &logger, "-----------------------\r\n" );
// Click initialization.
C2X5WAMP_MAP_MIKROBUS( cfg, MIKROBUS_1 );
c2x5wamp_init( &c2x5wamp, &cfg );
Delay_ms( 100 );
c2x5wamp_default_cfg ( &c2x5wamp );
Delay_ms( 100 );
}

Application Task

This is a example which demonstrates the use of 2x5W Amp Click board. This examples first activates operation mode MUTE for 5 seconds and after that activates operation mode PLAY. When the device is in Play mode then changes the gain selection, the first sets the minimum gain ( 20dB ) for 10 seconds and then sets the maximum gain (32dB) for 5 seconds too. Results are being sent to the Usart Terminal where you can track their changes.

void application_task ( void )
{
log_printf( &logger, " MUTE MODE \r\n" );
Delay_ms( 5000 );
log_printf( &logger, "-----------------------\r\n" );
{
log_printf( &logger, " PLAY MODE \r\n" );
}
else
{
log_printf( &logger, " ERROR PLAY MODE \r\n" );
}
log_printf( &logger, "-----------------------\r\n" );
log_printf( &logger, " Gain set to 20dB \r\n" );
Delay_ms( 10000 );
log_printf( &logger, "- - - - - - - - - - - -\r\n" );
log_printf( &logger, " Gain set to 32dB \r\n" );
Delay_ms( 5000 );
log_printf( &logger, "-----------------------\r\n" );
}

Note

The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.2x5WAmp

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. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.


c2x5wamp_cfg_setup
void c2x5wamp_cfg_setup(c2x5wamp_cfg_t *cfg)
Config Object Initialization function.
C2X5WAMP_GAIN_32DB
#define C2X5WAMP_GAIN_32DB
Definition: c2x5wamp.h:85
C2X5WAMP_GAIN_20DB
#define C2X5WAMP_GAIN_20DB
Definition: c2x5wamp.h:82
c2x5wamp_set_gain
uint8_t c2x5wamp_set_gain(c2x5wamp_t *ctx, uint8_t select_gain)
Set gain resistors of the amplifier function.
application_task
void application_task(void)
Definition: main.c:76
c2x5wamp_init
C2X5WAMP_RETVAL c2x5wamp_init(c2x5wamp_t *ctx, c2x5wamp_cfg_t *cfg)
Initialization function.
c2x5wamp_cfg_t
Click configuration structure definition.
Definition: c2x5wamp.h:125
application_init
void application_init(void)
Definition: main.c:46
C2X5WAMP_MODE_PLAY
#define C2X5WAMP_MODE_PLAY
Definition: c2x5wamp.h:75
C2X5WAMP_MODE_MUTE
#define C2X5WAMP_MODE_MUTE
Definition: c2x5wamp.h:74
c2x5wamp_default_cfg
void c2x5wamp_default_cfg(c2x5wamp_t *ctx)
Click Default Configuration function.
c2x5wamp_set_mode
uint8_t c2x5wamp_set_mode(c2x5wamp_t *ctx, uint8_t select_mode)
Set mode selection of the amplifier function.
C2X5WAMP_MAP_MIKROBUS
#define C2X5WAMP_MAP_MIKROBUS(cfg, mikrobus)
Definition: c2x5wamp.h:51