• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Microcontrollers » C2000™ Microcontrollers » C2000 32-bit Microcontrollers Forum » looking for Example Concerto UART using alternate gpio pins
Share
C2000™ Microcontrollers
  • Forums
  • Announcements
  • E2E Wiki
Options
  • Subscribe via RSS
C2000 Resources
  • Product Folder
  • C2000 Training Portal
  • C2000 Technical Training Catalog
  • C2000 Datasheets, App Notes, User Guides
  • C2000 Hardware Design Kits
  • controlSUITE for C2000 Software Library


  • InstaSPIN Resources
  • What is InstaSPIN?
  • Videos and Support


  • InstaSPIN-FOC and InstaSPIN-MOTION Resources
  • What is InstaSPIN-FOC?
  • What is InstaSPIN-MOTION?
  • Product Folder: F28069F, F28068F, F28062F, F28068M, F28069M
  • User’s Guide
  • Technical User’s Manual
  • Tools
  • looking for Example Concerto UART using alternate gpio pins

    looking for Example Concerto UART using alternate gpio pins

    This question is not answered
    Larry Ansell
    Posted by Larry Ansell
    on Aug 29 2012 12:13 PM
    Intellectual890 points

    The examples in the controlSuite Host examples are limited to using GPIO_PIN_0 through GPIO_PIN_7 (defined in gpio.h).  What I would like please is the uart_echo() example to use UART2 and the alternate pins from Table 4.1 , PB4_GPIO12 and PD1_GPIO17,  so that the demo code is something like this:

    SysCtlPeripheralEnable(SYSCTL_PERIPH_UART2);

    IntMasterEnable();

    // THIS NEEDS MODIFICATION, it looks like I need to write to GPIOAFSEL and GPIOPCTL but I'm not sure how to map these to the 7 bits

    //The digital alternate hardware functions are enabled by setting the appropriate bit in the GPIO Alternate Function Select (GPIOAFSEL)

    //and GPIODEN registers and configuring the PMCx bit field in the GPIO Port Control (GPIOPCTL) register to the numeric enoding.

     GPIOPinTypeUART(GPIO_PORTB_BASE, GPIO_PIN_12);   

     GPIOPinTypeUART(GPIO_PORTD_BASE,  GPIO_PIN_17 ) 

    GPIOPinConfigure(GPIO_PB4_U2RX);    

    GPIOPinConfigure(GPIO_PD1_U2TX);

     

    Thanks for your help,

    Larry

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    All Replies
    • //--Kelvin--\\
      Posted by //--Kelvin--\\
      on Sep 07 2012 15:32 PM
      Intellectual1335 points

      Hello Larry,

      I think you are on the right path.  First, when you use the GPIOTypeUART command you will use the port base, then the pin number for that port, not the GPIO number shown in table 4-1.  So you will not use PIN_12 or PIN_17, as these definitions do not exist.  Your setup should look like this:

      GPIOPinTypeUART(GPIO_PORTB_BASE,GPIO_PIN_4);

      GPIOPinTypeUART(GPIO_PORTD_BASE,GPIO_PIN_1);

      Also, I think you need to give access to configure port B and port D with this before you do any of this with:

      SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOB);

      SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOD);

      Lastly, you do not have to explicity set the GPIO Port Control and GPIO Alternate Function Select registers, as this is taken care of in the other functions that you use to setup the UART.

      Regards,

      Kelvin

      Please click the Verify Answer button on this post if it answers your question.  Thank You.

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    TI E2E™ Community
    • Support Forums
    • Blogs
    • Videos
    • Groups
    • Site Support & Feedback
    • Settings
    TI E2E™ Community Groups
    • TI University Program
    • Make the Switch
    • Microcontroller Projects
    • Motor Drive & Control
    Other Communities
    • Deyisupport
    • Designsomething.org
    • beagleboard.org
    • TI on Element 14
    • TI on TechXchangeSM
    Other Technical & Support Resources
    • WEBENCH® Design Center
    • Product Information Centers
    • Technical Documents
    • TI Design Network
    • TI Technical Articles
    • TI Training

    All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

    Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

    Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
    TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

    TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
    embedded processors, along with software, tools and the industry’s largest sales/support staff.

    © Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
    Trademarks | Privacy Policy | Terms of Use