• 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 » All Tags » interrupt
Share
Stellaris® ARM® Microcontrollers
  • Forum

Browse by Tags

Stellaris® ARM® Microcontrollers

Welcome to the Stellaris® ARM® Microcontrollers Section of the TI E2E Support Community. Ask questions, share knowledge, explore ideas, and help solve problems with fellow engineers. To post a question, click on the forum tab then "New Post".

Sign In to Post
Tags
You have subscribed to this tag. To view or manage your tag subscriptions, click here.   Close
You have unsubscribed from this tag. To view or manage your tag subscriptions, click here.   Close
You are currently viewing:
interrupt
  • adc
  • arm
  • boot loader
  • bootloader
  • CCS
  • CCSV4
  • Cortex-M3
  • debug
  • DK-LM3S9B96
  • Ethernet
  • Flash
  • GPIO
  • I2C
  • IAR
  • JTAG
  • Keil
  • LM Flash Programmer
  • LM3S3748
  • LM3S6965
  • lm3s8962
  • LM3S9B90
  • LM3S9B92
  • LM3S9B96
  • Luminary
  • lwIP
Related Posts
  • Forum Post: Re: Solving UART receive FIFO overflowed!

    Andy Neil Andy Neil
    nhanndt The generating rate of the GSM modem is 115200 bps So think about it: how long does each character take to transmit...? nhanndt I don't understand what parameter 1/8, 1/4, 1/2, 3/4 or 7/8 is "1/8" is one-eighth (ie 12.5%); this means that the interrupt fires when the FIFO...
    on May 18, 2010
  • Forum Post: Re: Solving UART receive FIFO overflowed!

    Andy Neil Andy Neil
    nhanndt Can i extend the capacity of the FIFOs? No - they are a "hard" part of the Stellaris microcontroller silicon. But you really shouldn't need to - even an 8051 (an 8-bit pocessor with no FIFOs) should be able to cope with controlling a modem! The key is to use a software buffer...
    on May 24, 2010
  • Forum Post: Using SSI

    Trabaquini52367 Trabaquini52367
    Hello, I want to make an application in which I can read a sensor and save the data at the memory card (SD card ), both using the SSI. I've programmed two pins for the chip select, GPIO Port B pin 2 and - GPIO Port G pin 0 ) . I try to read de value of a pin0 (Port G) and "fault interrupt"...
    on Jun 24, 2010
  • Forum Post: Interrupt routine works only once

    Tomasz Rogalski Tomasz Rogalski
    Hi everyone. I use SOurcery G++ and my board is DK-LM3S9B96. I try to do interrupt but routine is executed only once. My code looks like that: GPIOPinTypeGPIOInput(GPIO_PORTC_BASE, GPIO_PIN_7); GPIOPortIntRegister(GPIO_PORTC_BASE, Send); GPIOIntTypeSet(GPIO_PORTC_BASE, GPIO_PIN_7, GPIO_RISING_EDGE...
    on Jul 29, 2010
  • Forum Post: UART Interrupt API

    tommessum tommessum
    UART interrupt routine (Cortex M3 for the LM3S6965 evaluation Kit) Where can I find some information on how to use the Stellaris Peripheral Library API for setting up an UART interrupt buffered I/O set of routines? PS I am aware of the UARTSTDIO module. I just want to know how to use the standard Peripheral...
    on Jul 30, 2010
  • Forum Post: How to registrate a Interrupt-Handler for a Timer on a Lm3sb92 evaluationskit

    kaffo kaffo
    hallo, I am new here und i am from cameroon. I try to togglen the on-Board LED all Second. I try to use Timer0 like my Clock. I don t know why it is not goes like i want it. Please help me. Regards Christian ///////////////////////////////////////////////////////////////////////...
    on Dec 19, 2010
  • Forum Post: Re: Interrupt handlers

    Steve Ling Steve Ling
    In the qs-scope example the interrupt vectors are declared and placed into the vector table in the startup file (startup_xxx.x depending on which dev tools you are using). Possibly this is the link you are missing? For example, here are the relevant lines from the startup_ccs.c file. //*******...
    on Jan 26, 2011
  • Forum Post: Re: Trying to get timers working - Keil compiler

    Peter Mix Peter Mix
    Andy, First, thanks for the reply. Second, you say that I have to first enable the peripheral as if I should know that already. Every other CPU I have used allows you to write to registers before enabling a peripheral. In fact, if I enable the peripheral first, it's going to be in some default...
    on Feb 11, 2011
  • Forum Post: Re: Transmit data in UART - using Interrupt Controller Lm3s9b92

    Andy Neil Andy Neil
    Also check the documentation for your particualar software tools; they may include their own specific examples - I know that Keil do...
    on Mar 14, 2011
  • Forum Post: Trying to setup interrupt with ROM on LM3s1811

    Timothy Davis Timothy Davis
    I am new to Luminary and am trying to setup an interrupt. I have included the relavent code fragments. Can someone tell me what I am missing? Code Compser Studio -> EKS-LM3S811 -> LM3S1811, #define TARGET_IS_TEMPEST_RC1 #include "hw_memmap.h" #include "hw_types.h" #include...
    on Apr 11, 2011
  • Forum Post: SysCtlSleep problem

    Pran Pran
    Normal 0 false false false MicrosoftInternetExplorer4 Hi, I am implementing the power save mode for LM3S5632 Controller, when there is no input from function key press, USB and Motor 1 and Motor 2 after 5 Min. processor go to...
    on Apr 15, 2011
  • Forum Post: Configuring PJ7 as input CCP0

    abiven yves-marie abiven yves-marie
    Hi everybody, I try to use PJ7 as input timer. To test my configuration, I use PWM PF1 output and send it on PJ7. I think I have done something wrong configuring PJ7 to detect positive edge? Then if PJ7 is well configure it should make a LED lighting. My code is the following, could you tell...
    on May 12, 2011
  • Forum Post: Re: "uartstdio.h" user manual.

    Andy Neil Andy Neil
    Iman Prayudi handle 20*8bit incoming UART data, while the RX FIFO is only 16*8bit. have you ever dealt with the same problem? Yes - I've done that on microcontrollers with no FIFO at all! The secret is to use interrupts and a so-called Ring-Buffer (aka Circular Buffer ) - which is precisely...
    on Jun 17, 2011
  • Forum Post: LwipTimer->TelnetHandler not being called

    Mike McMahon Mike McMahon
    Hello All ! I am having troubles having the TelnetHandler firing when I am JTAG programming. I have a routine that programs another FPGA using Actel's DirectC code. When I do this, the TelnetHandler does not get called until the DirectC code is done. And so, all my "Job Pending" messages...
    on Mar 7, 2011
  • Forum Post: How to configure PB0 and PB1 for interrupt pins for accelerometer?

    Wilson Fok Wilson Fok
    Hi all, I have an accelerometer (ADXL345) with the two interrupt pins (INT1 and INT2) connected to the LM3S1968 PB0 and PB1. I would like to configure the two pins such that I can receive interrupts from the accelerometer that triggers a callback function. Thanks. Wilson
    on Jul 26, 2011
  • Forum Post: LM3S1968 Wake Up from Deep-Sleep Mode?

    Wilson Fok Wilson Fok
    I am currently using LM3S1968. In my application, I need to put the MCU to deep-sleep mode, and wake it up periodically or when there are interrupts. Is it possible? Thanks, Wilson
    on Aug 4, 2011
  • Forum Post: Any examples on LM3S1968 how to go into sleep mode and how to wake up?

    Wilson Fok Wilson Fok
    Is there any example on how does LM3S1968 go into sleep mode and also how to wake up periodically or from interrupt? Thanks. Wilson
    on Aug 4, 2011
  • Forum Post: Problem in reading value through UART0 interrupt in lm3s6965

    kudiarasu kudiarasu
    Hi all We are working in lm3s6965 for data acquisition through RS485(MODBUS RTU) , Intially we worked this same project in lm3s1968 so for it is working fine . The only difference between these boards are UART1 (lm3s1968) for modbus poll and UART0 for lm3s6965. Modbus based polling and receiving part...
    on Jul 31, 2011
  • Forum Post: How to wake up LM3S1968 from deep-sleep using a system timer?

    Wilson Fok Wilson Fok
    Hi all, I would like to wake up the MCU from deep-sleep with a system timer (TIMER 0 for example). But it seems that the timer stops working when the MCU is deep-sleeping. Best regards, Wilson
    on Aug 5, 2011
  • Forum Post: I can't to use Interrupt timer with USB Host on LM3s9B90.

    Noppamas Keawmoraraungrit Noppamas Keawmoraraungrit
    I want to use Interrupt timer (timers folder in stellarisware) with USB host on LM3S9B90. By I integrated code Interrupt timer into USB Host (usb_host_msc folder in stellarisware) Example => I want to blinky LED by use Interrupt timer every 1 sec and use USB Host Function . But I can't...
    on Aug 11, 2011
  • Forum Post: Tx is not work for LM3S8962 and LM3S8938 ?

    Sergey Baburin Sergey Baburin
    So, Let me describe the issue which found in LM3S8962 and LM3S8938 microcontrollers. The routing of CAN packets to Ethernet and vice versa is main task of firmware. Frameworks are Stellaris DriverLib 7611 and uIP (part of DriverLib too). Compilers are Keil 3.xx and GCC 4.5.2. Flash burning tools...
    on Aug 31, 2011
  • Forum Post: Re: LM3S9B92 IrDA does not work, outputs normal UART signal

    johan hendriks johan hendriks
    I'm completely lost. I used the normal peripheral functions from uart.h instead of the ROM functies, no difference. Tried different combinations of enabling peripherals and certain settings like IrDA/baud-rate, no difference. Stil able with this initialization and ISR to forward data from UART2 to...
    on Sep 19, 2011
  • Forum Post: Timer0 Interrupt not working in Ethernet bootloader

    kudiarasu kudiarasu
    Hi all, I am trying to implement the Ethernet boot loader for our customized board using the Working Example boot_eth software provided by TI, In my existing design I am using External watch dog for monitoring purpose, usually feed for the watchdog goes from the timer0 interrupt routine for every...
    on Sep 27, 2011
  • Forum Post: Unable to decifer UART

    Diana Escobar-Pazo Diana Escobar-Pazo
    For some reason, I am unable to get UART to work on the Stellaris Dev Board (LM3S1968). At some point yesterday, it was TXing data but not receiving... now, it's doing none. Can someone please look at my code and make suggestions as to what I am doing wrong? BTW: This is for my Senior Design project...
    on Jun 30, 2011
  • Forum Post: ADC Conversion trigger by timer using StellarisWare

    zlalanne zlalanne
    Hello, I am trying to start an ADC conversion using a timer interrupt and plan on reading the result of the ADC conversion via an ADC interrupt. I am trying to write as much of the code as possible using StellarisWare functions. However, I can not determine the right function to configure the timer...
    on Oct 12, 2011
12
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