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.

Fiding CC3200 registers in datasheet

Other Parts Discussed in Thread: CC3200

Hi everyone,

This is maybe a weird question, but i am usually just use the Tiva and sometimes the MSP430. For the tiva i find everything in the datasheet, the MSP430 i need to go the family datasheet. What about the CC3200? i'm trying to check how to configure the UART but i can't find much. Is there other file i am missing or am i just not looking it right? I still only looked through the topics shown in the PDF (and read bits and used CTRL+F of course)

  • I have saved most documents related to CC3200, and have not found any detailed information about CC3200 registers in those documents. What I have found is a Memory Map table of the peripherals.

    I guess if you want to learn how to configure the UART, is to learn from the UART example program and also learn how to use the Pinmux Utility if you want to use another UART port.

    - kel

  • Hi Markel, i actually found what i needed here http://www.ti.com/lit/ug/swru367a/swru367a.pdf

    I don't know if i am using the right words. Sometimes i see it as register map from the peripherals. I was not talking about the processor registers, like PC, SP and other processor core registers. 

    I need to get the software package when i get the launchpad. Right now i'm just reading a bit on the datasheet and the file i referred above

  • Hi Luis, Markel,

    The technical reference manual( TRM) has the information that you are looking for, with regards to CC3200 peripherals.

    Luis found it. Here is the general link: http://processors.wiki.ti.com/index.php/CC32xx_Technical_Reference_Manual

     

    I am closing the thread. If you still have any request, please create a new thread and add a link to this one for reference

  • After looking for some "lost" registers I found this post but I can't find some registers used in example programs. I have the TRM but the register are not complete I think.

    For example in prcm.c file there are some references:

    // DIG DCDC LPDS ECO Enable //LPDS: Low Poer Deep Sleep
    //
    HWREG(0x4402F064) |= 0x800000;    // This address doesn't appear in the TRM. It is limited to 0x4402.6FFF

    Few lines after:

    // Handling the clock switching (for 1.32 only)
    //
    HWREG(0x4402E16C) |= 0x3C;    // The same. Register address that I can't find in the TRM.

    Where can I find those register info to understand what is changing this code?

    Thanks.