waveform2 2.0.0.0
Main Page

Waveform 2 click

‍Waveform 2 Click is a compact add-on board that contains a direct digital synthesis device for waveform generator applications. This board features the AD9834, a 75 MHz low power DDS device capable of producing high-performance sine/triangle/square outputs from Analog Devices. It provides the capability for phase and frequency modulation and has an on-board comparator that allows the production of a square wave signal for clock generation.

click Product page


Click library

  • Author : Stefan Ilic
  • Date : Aug 2021.
  • Type : I2C/SPI type

Software Support

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

Standard key functions :

Example key functions :

Example Description

‍This is an example that demonstrates the use of the Waveform 2 Click board.

The demo application is composed of two sections :

Application Init

‍Initialize the communication interface, preforming hardware reset, and configure the click board.

void application_init ( void ) {
log_cfg_t log_cfg;
waveform2_cfg_t waveform2_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
waveform2_cfg_setup( &waveform2_cfg );
WAVEFORM2_MAP_MIKROBUS( waveform2_cfg, MIKROBUS_1 );
err_t init_flag = waveform2_init( &waveform2, &waveform2_cfg );
if ( ( I2C_MASTER_ERROR == init_flag ) || ( SPI_MASTER_ERROR == init_flag ) ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
waveform2_default_cfg ( &waveform2 );
log_printf( &logger, "---- EEPROM test ----\r\n " );
log_printf( &logger, ">> Write [MikroE] to address 0x0123\r\n " );
waveform2_eeprom_write_string( &waveform2, 0x0123, demo_tx_buf, 6 );
waveform2_eeprom_read_string ( &waveform2, 0x0123, demo_rx_buf, 6 );
log_printf( &logger, ">> Read data: %s from address 0x0123.... \r\n ", demo_rx_buf );
Delay_ms ( 1000 );
waveform2_hw_reset( &waveform2 );
Delay_ms ( 1000 );
log_printf( &logger, "---- Waveform set freqency ----\r\n" );
int32_t freqency;
waveform2_set_freq( &waveform2, freqency );
Delay_ms ( 1000 );
log_info( &logger, " Application Task " );
}
#define WAVEFORM2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition waveform2.h:126
void waveform2_triangle_output(waveform2_t *ctx)
Waveform 2 set triangle output function.
void waveform2_set_freq(waveform2_t *ctx, uint32_t freq)
Waveform 2 set frequency function.
void waveform2_hw_reset(waveform2_t *ctx)
Waveform 2 hardware reset function.
char demo_tx_buf[10]
Definition main.c:41
void application_init(void)
Definition main.c:50
float value
Definition main.c:39
uint32_t aprox_freq_calculation(float freqency)
Aproximate frequency calculation function.
Definition main.c:157
char demo_rx_buf[10]
Definition main.c:40

Application Task

‍Predefined characters are inputed from the serial port. Depending on the character sent the signal frequency, waveform or amplitude will be changed.

void application_task ( void ) {
char rx_data;
uint32_t freq_data;
if ( log_read( &logger, &rx_data, 1 ) ) {
switch ( rx_data ) {
case '+': {
if ( value > 200000 ) {
value = 0;
}
value += 100000;
freq_data = aprox_freq_calculation( value );
waveform2_set_freq( &waveform2, freq_data );
log_printf( &logger, ">> Increasing the frequency \r\n " );
break;
}
case '-': {
if ( value < 200000 ) {
value = 400000;
}
value -= 100000;
freq_data = aprox_freq_calculation( value );
waveform2_set_freq( &waveform2, freq_data );
log_printf( &logger, ">> Decreasing the frequency \r\n " );
break;
}
case 't': {
log_printf( &logger, ">> Triangle output \r\n " );
break;
}
case 's': {
waveform2_sine_output( &waveform2 );
log_printf( &logger, ">> Sinusoid output \r\n " );
break;
}
}
}
}
void application_task(void)
Definition main.c:97

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

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.