clockgen3 2.0.0.0
Main Page

Clock Gen 3 click

Clock Gen 3 Click features a low power self-contained digital frequency source providing a precision frequency from 1kHz to 68MHz, set through a serial port.

click Product page


Click library

  • Author : MikroE Team
  • Date : Jul 2020.
  • Type : I2C type

Software Support

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

Library Description

‍This library contains API for ClockGen3 Click driver.

Standard key functions :

Example key functions :

Examples Description

‍This example demonstrates the use of Clock Gen 3 click board.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and configures the click board.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
CLOCKGEN3_MAP_MIKROBUS( cfg, MIKROBUS_1 );
clockgen3_init( &clockgen3, &cfg );
Delay_ms ( 500 );
}
#define CLOCKGEN3_CFG_ON_CLK_180
Definition clockgen3.h:114
#define CLOCKGEN3_MAP_MIKROBUS(cfg, mikrobus)
Definition clockgen3.h:66
void clockgen3_config(clockgen3_t *ctx, uint8_t cfg)
Configuration.
void application_init(void)
Definition main.c:33

Application Task

‍Sets different frequencies every 3 seconds and displays the set frequency on the USB UART.

void application_task ( void )
{
log_printf( &logger, ">> Set Freq = 12.000 MHz \r\n" );
clockgen3_set_freq( &clockgen3, 12000.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 8.000 MHz \r\n" );
clockgen3_set_freq( &clockgen3, 8000.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 5.500 MHz \r\n" );
clockgen3_set_freq( &clockgen3, 5500.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 2.700 MHz \r\n" );
clockgen3_set_freq( &clockgen3, 2700.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 800 KHz \r\n" );
clockgen3_set_freq( &clockgen3, 800.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 200 KHz \r\n" );
clockgen3_set_freq( &clockgen3, 200.0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "---------------------------- \r\n" );
}
void application_task(void)
Definition main.c:60

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

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.ClockGen3

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.