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 :
clockgen3_cfg_setup
Config Object Initialization function.
void clockgen3_cfg_setup(clockgen3_cfg_t *cfg)
Config Object Initialization function.
Click configuration structure definition.
Definition clockgen3.h:149
clockgen3_init
Initialization function.
err_t clockgen3_init(clockgen3_t *ctx, clockgen3_cfg_t *cfg)
Initialization function.
Click ctx object definition.
Definition clockgen3.h:131
Example key functions :
clockgen3_set_cs_pin
Sets CS pin state
void clockgen3_set_cs_pin(clockgen3_t *ctx, uint8_t state)
Sets CS pin state.
clockgen3_generic_write
Generic write function.
void clockgen3_generic_write(clockgen3_t *ctx, uint8_t *data_buf, uint8_t len)
Generic write function.
clockgen3_set_freq
Sets Frequency
void clockgen3_set_freq(clockgen3_t *ctx, float freq)
Sets Frequency.
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.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
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.
{
log_printf( &logger, ">> Set Freq = 12.000 MHz \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 8.000 MHz \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 5.500 MHz \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 2.700 MHz \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 800 KHz \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, ">> Set Freq = 200 KHz \r\n" );
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.