This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP432P401R: a issue about clock settings as 48MHz in RevC or RevD MSP432P401R

Part Number: MSP432P401R

dear all,

i set the clock as 48MHz with below code:

 CS_setDCOCenteredFrequency(CS_DCO_FREQUENCY_48);

if i use RevB device, it will no problem. but when i use RevC or RevD, the code will stop at this function. 

when i add two codes as before CS_setDCOCenteredFrequency like below:

    FlashCtl_setWaitState(FLASH_BANK0, 2);

    FlashCtl_setWaitState(FLASH_BANK1, 2);

   CS_setDCOCenteredFrequency(CS_DCO_FREQUENCY_48);

the bug will be debugged. so why RevC or RevD need to add these code and is this way is right? 

could you please share some standard example code about setting clock?

thanks a lot.

  • amien,

    I won't speak to Rev B, but Flash Wait-State are necessary as the flash cannot be written to at 48MHz. Please do not use Rev B as that is experimental silicon that is not RTM material. 

    From the datasheet:

    On Rev C/D we improved Flash Wait-States to only need 1 wait state when writing to flash at 48MHz for NRM.

    Here is a tested example that achieves what you are looking for. 

    4010.cs_dco_frequency_tune.c
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    /* --COPYRIGHT--,BSD
    * Copyright (c) 2017, Texas Instruments Incorporated
    * All rights reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    *
    * * Redistributions of source code must retain the above copyright
    * notice, this list of conditions and the following disclaimer.
    *
    * * Redistributions in binary form must reproduce the above copyright
    * notice, this list of conditions and the following disclaimer in the
    * documentation and/or other materials provided with the distribution.
    *
    * * Neither the name of Texas Instruments Incorporated nor the names of
    * its contributors may be used to endorse or promote products derived
    * from this software without specific prior written permission.
    *
    * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    * CONTRIBUTORS 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.
    * --/COPYRIGHT--*/
    /*******************************************************************************
    * MSP432 Clock System - Tune DCO Frequency to Non-Standard Frequency
    *
    * Description: In this example, we show how easy it is to set the DCO frequency
    * to non-standard frequencies. Since MSP432 has the ability to granularly tune
    * the DCO frequency to non standard frequencies, this can be done easily using
    * the CS_setDCOFrequency frequency. This application will set the DCO
    * frequency to 48MHz, and then use the SysTick module to blink and LED
    * on P1.0.
    *
    * MSP432P4111
    * ------------------
    * /|\| |
    * | | |
    * --|RST P1.0 |---> P1.0 LED
    * | |
    * | |
    * | |
    * | |
    * | |
    *
    ******************************************************************************/
    /* DriverLib Includes */
    #include <ti/devices/msp432p4xx/driverlib/driverlib.h>
    /* Standard Includes */
    #include <stdint.h>
    #include <stdbool.h>
    volatile uint32_t mclk = 0;
    int main(void)
    {
    /* Halting the Watchdog */
    MAP_WDT_A_holdTimer();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • wow, thanks a lot. :)

**Attention** This is a public forum