1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2008 Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     *
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     *
    11     * --/COPYRIGHT--*/
    12    
    13    /*!
    14     *  ======== CS_A ========
    15     *  MSP430 Clock System
    16     */
    17    metaonly module CS_A inherits IClock
    18    {
    19    
    20    instance:
    21        /*!
    22         *  ======== hasLFXT1 ========
    23         *  Specify if LFXT1 is available on the device.
    24         *
    25         *  Not all devices have low frequency clock. This specifies if
    26         *  it is available for a particular device.
    27         */
    28        config Bool hasLFXT1 = false;
    29    
    30        config Float VLOCLKHz = 9400;
    31        config Float LFMODOSCHz = 39000;
    32        config Float MODOSCHz = 5000000;
    33        config Float WATCHCRYSTALCLKHz = 32768;
    34        config Float XT1CLKHz = 0;
    35        config Float XT2CLKHz = 0;
    36    }