• 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 » Stellaris® ARM® Microcontrollers » Stellaris® ARM® LM3S Microcontrollers Forum » buffer initialization
Share
Stellaris® ARM® Microcontrollers
  • Forum
Options
  • Subscribe via RSS
Helpful Stellaris® LM4F Series Links
  • LM4F Series
  • Stellaris PinMux Utility
  • Stellaris® LM4F120 LaunchPad
  • LM4F MCU Applications
  • LM4F MCU Video
  • ARM Cortex-M4F Whitepaper
  • Stellaris MCU Brochure
  • LM4F232 Eval Kit
  • buffer initialization

    buffer initialization

    • fv78
      Posted by fv78
      on Feb 01 2007 01:20 AM
      Prodigy60 points
      Hi,
      I can't seem to make the piece of code below running.
      The user LED on the EVLM3S811 never lights on!
      What am I doing wrong ?
      The problem is located in the for loop which seems to
      work if I decrease the buffer's size to say 200.

      thanks in advance for your help

      PS: memset(buf, 'A', sizeof(buf)) doesn't work either.


      #include "hw_types.h"
      #include "hw_memmap.h"
      #include "sysctl.h"
      #include "gpio.h"

      int main(void)
      {
      int buf[512];
      int i;

      // Set the clocking to run at 20MHz from the PLL
      SysCtlClockSet(SYSCTL_SYSDIV_10 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_6MHZ);

      // Enable the peripherals used by the application
      SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOC);
      // Configure LED, push button
      GPIODirModeSet(GPIO_PORTC_BASE, GPIO_PIN_5, GPIO_DIR_MODE_OUT);
      GPIOPinWrite(GPIO_PORTC_BASE, GPIO_PIN_5, 0);

      for(i=0; i<310; i++)="" buf[i]="">
      i = buf[0]; // to avoid warning in this example
      GPIOPinWrite(GPIO_PORTC_BASE, GPIO_PIN_5, GPIO_PIN_5);

      while(1);

      }

      Post edited by: fv78, at: 2007/02/01 01:22
      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • orinem
      Posted by orinem
      on Feb 01 2007 02:20 AM
      Intellectual470 points

       

      Your stack isn't big enough. It's defined in startup.s similar to the following:

      Code:

       ;******************************************************************************
      ;
      ; <
      h> Stack Configuration
      ;   <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
      ; </
      h>
      ;
      ;******************************************************************************
      Stack   EQU     0x00000100




      You are going to have to increase your stack size by the size of your buffer.

      Orin.

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • fv78
      Posted by fv78
      on Feb 01 2007 02:44 AM
      Prodigy60 points
      I am so stupid! I searched for that in the different keil's menus and didn't even thought of looking through
      the different files of the project.

      Thanks a lot for the quick (needed ;-) ) answer.
      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