Elevate your engineering solution with a cutting-edge clock generator, delivering reliable and efficient timing signals
A
A
Hardware Overview
How does it work?
Clock Gen 2 Click is based on the DS1087, a 3.3V spread-spectrum EconOscillator from Analog Devices. This IC is factory-produced with a range of different master clock frequencies, ranging from 33.3 MHz, up to 66.6 MHz, with variable spread spectrum percentages. The IC on the Clock Gen 2 click has the master clock fixed to 66.6 MHz, allowing the frequency range from 260 kHz to 66.6 MHz. This IC uses the clock prescaler from 2 0 to 2 8 to achieve frequencies different from the master frequency. By selecting the spread-spectrum percentage, it is possible to avoid the generation of too much EMI, which otherwise might violate the FCC/IEC regulations. As mentioned, the internal clock frequency that the DS1087 generates is 66.6MHz. The master clock is frequency-modulated by the internal triangle wave generator. The main oscillator frequency can be dithered below the maximum frequency by a selectable ratio. A bit in the prescaler register determines the spread-spectrum dither range, which can be selected between 2% and 4%
under the main clock frequency. The IC pin labeled as SPRD is routed to the mikroBUS™ PWM pin. A logic HIGH level on this pin enables the spread-spectrum function. The DS1087LU is equipped with non-volatile memory locations (EEPROM) to store the content of all the configuration registers. Writing data to the configuration registers can be automatically mirrored to the EEPROM. This is controlled by the Write Control bit (WC). It allows automatically storing data to EEPROM after each register change (WC = 0, default) or storing the config data manually by issuing the WRITE EE command (WC = 1). This feature allows the configuration to be remembered between the POR (Power ON Reset) cycles. The output Enable (OE) pin allows the output clock to be turned off at the output pin. A logic HIGH level on this pin turns off the clock output. However, this will not turn off the internal master clock generator, so the IC will still drain the power necessary to work. To completely put the device in a power-down mode, another pin is
used: a logic LOW level on the PDN pin shuts down the master oscillator, draining less current from the power source. The OE pin is routed to the mikroBUS™ CS pin and is labeled as OE, while the PDN pin is routed to the RST pin of the mikroBUS™ and is labeled as PDN. These signals are synchronized with the internal master clock, preventing glitches at the output. The clock output signal is at the SMA connector on the Click board™. This connector protects the high-frequency clock signal and further reduces EMI. It also provides reliable contact with the least possible losses. The clock output signal amplitude is 2.4V, which makes this Click board™ usable with most 3.3V operated MCUs and other devices. The standardized I2C interface allows this Click board™ to be interfaced with a wide range of devices. I2C clock and data pins of the IC (SCL and SDA) are routed to the appropriate mikroBUS™ pins, allowing simple and reliable interfacing.
Features overview
Development board
Clicker 4 for STM32F3 is a compact development board designed as a complete solution, you can use it to quickly build your own gadgets with unique functionalities. Featuring a STM32F302VCT6, four mikroBUS™ sockets for Click boards™ connectivity, power managment, and more, it represents a perfect solution for the rapid development of many different types of applications. At its core, there is a STM32F302VCT6 MCU, a powerful microcontroller by STMicroelectronics, based on the high-
performance Arm® Cortex®-M4 32-bit processor core operating at up to 168 MHz frequency. It provides sufficient processing power for the most demanding tasks, allowing Clicker 4 to adapt to any specific application requirements. Besides two 1x20 pin headers, four improved mikroBUS™ sockets represent the most distinctive connectivity feature, allowing access to a huge base of Click boards™, growing on a daily basis. Each section of Clicker 4 is clearly marked, offering an intuitive and clean interface. This makes working with the development
board much simpler and thus, faster. The usability of Clicker 4 doesn’t end with its ability to accelerate the prototyping and application development stages: it is designed as a complete solution which can be implemented directly into any project, with no additional hardware modifications required. Four mounting holes [4.2mm/0.165”] at all four corners allow simple installation by using mounting screws. For most applications, a nice stylish casing is all that is needed to turn the Clicker 4 development board into a fully functional, custom design.
Microcontroller Overview
MCU Card / MCU

Architecture
ARM Cortex-M4
MCU Memory (KB)
256
Silicon Vendor
STMicroelectronics
Pin count
100
RAM (Bytes)
40960
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Click board™ Schematic

Step by step
Project assembly
Software Support
Library Description
This library contains API for Clock Gen 2 Click driver.
Key functions:
clockgen2_output_enable- Function for enabling/disabling of the clock outputclockgen2_auto_setting_preserve- Function used for enabling/disabling auto settings preservationclockgen2_set_prescaler- Function for setting the main clock prescaler
Open Source
Code example
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.
/*!
* \file
* \brief ClockGen2 Click example
*
* # Description
* This application enables generation of square waved clock signal in range from 260 kHz to 66,6 MHz
*
* The demo application is composed of two sections :
*
* ## Application Init
* Driver initialization.
*
* ## Application Task
* Changes the prescaler and enables/disables the clock output.
*
*
* \author MikroE Team
*
*/
// ------------------------------------------------------------------- INCLUDES
#include "board.h"
#include "log.h"
#include "clockgen2.h"
// ------------------------------------------------------------------ VARIABLES
static clockgen2_t clockgen2;
static log_t logger;
// ------------------------------------------------------ APPLICATION FUNCTIONS
void application_init ( void )
{
log_cfg_t log_cfg;
clockgen2_cfg_t cfg;
/**
* 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.
clockgen2_cfg_setup( &cfg );
CLOCKGEN2_MAP_MIKROBUS( cfg, MIKROBUS_1 );
clockgen2_init( &clockgen2, &cfg );
Delay_ms ( 100 );
}
void application_task ( void )
{
// Task implementation.
char i;
for ( i = 5; i< 8; i++ )
{
clockgen2_set_prescaler( &clockgen2, i );
clockgen2_output_enable( &clockgen2, 1 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
clockgen2_output_enable( &clockgen2, 0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
}
int main ( void )
{
/* Do not remove this line or clock might not be set correctly. */
#ifdef PREINIT_SUPPORTED
preinit();
#endif
application_init( );
for ( ; ; )
{
application_task( );
}
return 0;
}
// ------------------------------------------------------------------------ END
Additional Support
Resources
Category:Clock generator
































