![]() |
BLDC control on ATAVRMC303 with ATxMega128A1
|
XMEGA Clock System driver source file. More...
#include "clksys_driver.h"
Go to the source code of this file.
Functions | |
| void | CCPWrite (volatile uint8_t *address, uint8_t value) |
| void | CCPWrite (volatile uint8_t __near *address, uint8_t value) |
| CCP write helper function in assembly source file. More... | |
| void | CLKSYS_AutoCalibration_Enable (uint8_t clkSource, bool extReference) |
| This function enables automatic calibration of the selected internal oscillator. More... | |
| void | CLKSYS_Configuration_Lock (void) |
| This function lock the entire clock system configuration. More... | |
| uint8_t | CLKSYS_Disable (uint8_t oscSel) |
| This function disables the selected oscillator. More... | |
| uint8_t | CLKSYS_Main_ClockSource_Select (CLK_SCLKSEL_t clockSource) |
| This function selects the main system clock source. More... | |
| void | CLKSYS_PLL_Config (OSC_PLLSRC_t clockSource, uint8_t factor) |
| This function configures the internal high-frequency PLL. More... | |
| void | CLKSYS_Prescalers_Config (CLK_PSADIV_t PSAfactor, CLK_PSBCDIV_t PSBCfactor) |
| This function changes the prescaler configuration. More... | |
| void | CLKSYS_RTC_ClockSource_Enable (CLK_RTCSRC_t clockSource) |
| This function selects a Real-Time Counter clock source. More... | |
| void | CLKSYS_XOSC_Config (OSC_FRQRANGE_t freqRange, bool lowPower32kHz, OSC_XOSCSEL_t xoscModeSelection) |
| This function configures the external oscillator. More... | |
| void | CLKSYS_XOSC_FailureDetection_Enable (void) |
| This function enables the External Oscillator Failure Detection (XOSCFD) feature. More... | |
XMEGA Clock System driver source file.
This file contains the function implementations for the XMEGA Clock System driver.
The driver is not intended for size and/or speed critical code, since most functions are just a few lines of code, and the function call overhead would decrease code performance. The driver is intended for rapid prototyping and documentation purposes for getting started with the XMEGA Clock System.
For size and/or speed critical code, it is recommended to copy the function contents directly into your application instead of making a function call.
Several functions use the following construct: "some_register = ... | (some_parameter ? SOME_BIT_bm : 0) | ..." Although the use of the ternary operator ( if ? then : else ) is discouraged, in some occasions the operator makes it possible to write pretty clean and neat code. In this driver, the construct is used to set or not set a configuration bit based on a boolean input parameter, such as the "some_parameter" in the example above.
Copyright (c) 2007, Atmel Corporation All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file clksys_driver.c.
| void CCPWrite | ( | volatile uint8_t * | address, |
| uint8_t | value | ||
| ) |
Definition at line 70 of file clksys_driver.c.
Referenced by CLKSYS_Configuration_Lock(), CLKSYS_Main_ClockSource_Select(), CLKSYS_Prescalers_Config(), and CLKSYS_XOSC_FailureDetection_Enable().
| void CCPWrite | ( | volatile uint8_t __near * | address, |
| uint8_t | value | ||
| ) |
CCP write helper function in assembly source file.
This function is written in assembly because of the timecritial operation of writing to the registers.
| address | A pointer to the address to write to. |
| value | The value to put in to the register. |
| void CLKSYS_AutoCalibration_Enable | ( | uint8_t | clkSource, |
| bool | extReference | ||
| ) |
This function enables automatic calibration of the selected internal oscillator.
Either the internal 32kHz RC oscillator or an external 32kHz crystal can be used as a calibration reference. The user must make sure that the selected reference is ready and running.
| clkSource | Clock source to calibrate, either OSC_RC2MCREF_bm or OSC_R32MCREF_bm. |
| extReference | True if external crystal should be used as reference. |
Definition at line 244 of file clksys_driver.c.
| void CLKSYS_Configuration_Lock | ( | void | ) |
This function lock the entire clock system configuration.
This will lock the configuration until the next reset, or until the External Oscillator Failure Detections (XOSCFD) feature detects a failure and switches to internal 2MHz RC oscillator.
Definition at line 276 of file clksys_driver.c.
References CCPWrite().

| uint8_t CLKSYS_Disable | ( | uint8_t | oscSel | ) |
This function disables the selected oscillator.
This function will disable the selected oscillator if possible. If it is currently used as a main system clock source, hardware will disregard the disable attempt, and this function will return zero. If it fails, change to another main system clock source and try again.
| oscSel | Bitmask of selected clock. Can be one of the following OSC_RC2MEN_bm, OSC_R32MEN_bm, OSC_RC32KEN_bm, OSC_XOSCEN_bm, OSC_PLLEN_bm. |
Definition at line 171 of file clksys_driver.c.
| uint8_t CLKSYS_Main_ClockSource_Select | ( | CLK_SCLKSEL_t | clockSource | ) |
This function selects the main system clock source.
Hardware will disregard any attempts to select a clock source that is not enabled or not stable. If the change fails, make sure the source is ready and running and try again.
| clockSource | Clock source to use as input for the system clock prescaler block. |
Definition at line 209 of file clksys_driver.c.
References CCPWrite().
Referenced by clock_init().

| void CLKSYS_PLL_Config | ( | OSC_PLLSRC_t | clockSource, |
| uint8_t | factor | ||
| ) |
This function configures the internal high-frequency PLL.
Configuration of the internal high-frequency PLL to the correct values. It is used to define the input of the PLL and the factor of multiplication of the input clock source.
| clockSource | Reference clock source for the PLL, must be above 0.4MHz. |
| factor | PLL multiplication factor, must be from 1 to 31, inclusive. |
Definition at line 151 of file clksys_driver.c.
Referenced by clock_init().
| void CLKSYS_Prescalers_Config | ( | CLK_PSADIV_t | PSAfactor, |
| CLK_PSBCDIV_t | PSBCfactor | ||
| ) |
This function changes the prescaler configuration.
Change the configuration of the three system clock prescaler is one single operation. The user must make sure that the main CPU clock does not exceed recommended limits.
| PSAfactor | Prescaler A division factor, OFF or 2 to 512 in powers of two. |
| PSBCfactor | Prescaler B and C division factor, in the combination of (1,1), (1,2), (4,1) or (2,2). |
Definition at line 190 of file clksys_driver.c.
References CCPWrite().
Referenced by clock_init().

| void CLKSYS_RTC_ClockSource_Enable | ( | CLK_RTCSRC_t | clockSource | ) |
This function selects a Real-Time Counter clock source.
Selects the clock source for use by the Real-Time Counter (RTC) and enables clock signal routing to the RTC module.
| clockSource | Clock source to use for the RTC. |
Definition at line 225 of file clksys_driver.c.
| void CLKSYS_XOSC_Config | ( | OSC_FRQRANGE_t | freqRange, |
| bool | lowPower32kHz, | ||
| OSC_XOSCSEL_t | xoscModeSelection | ||
| ) |
This function configures the external oscillator.
| freqRange | Frequency range for high-frequency crystal, does not apply for external clock or 32kHz crystals. |
| lowPower32kHz | True of high-quality watch crystals are used and low-power oscillator is desired. |
| xoscModeSelection | Combined selection of oscillator type (or external clock) and startup times. |
Definition at line 125 of file clksys_driver.c.
| void CLKSYS_XOSC_FailureDetection_Enable | ( | void | ) |
This function enables the External Oscillator Failure Detection (XOSCFD) feature.
The feature will stay enabled until next reset. Note that the XOSCFD will issue the XOSCF Non-maskable Interrupt (NMI) regardless of any interrupt priorities and settings. Therefore, make sure that a handler is implemented for the XOSCF NMI when you enable it.
Definition at line 264 of file clksys_driver.c.
References CCPWrite().
