• 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 » MSP430™ Microcontrollers » All Tags » MSP430F5438
Share
MSP430™ Microcontrollers
  • Forum
  • Announcements
  • E2E Wiki

Browse by Tags

MSP430™ Microcontrollers

Welcome to the MSP430™ 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".

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:
MSP430F5438
  • 5xx
  • adc
  • ADC12
  • bootloader
  • BSL
  • BSL430
  • CC430
  • CCE
  • CCS
  • CCS 4
  • CCSv4
  • chronos
  • Clock
  • Code Example
  • Code Examples
  • Debug
  • Debugger
  • ez430
  • eZ430-Chronos
  • FET430UIF
  • Flash
  • flash programming
  • I2C
  • IAR
  • IAR Embedded Workbench
Related Posts
  • Forum Post: Re: MSP-EXP430F5438

    LowPower5128 LowPower5128
    Documents and souece code stated below. http://focus.tij.co.jp/jp/general/docs/gencontent.tsp?contentId=45957
    on Sep 17, 2008
  • Forum Post: Re: MSP430F5438 excessive LPM3 current

    BrandonAzbell BrandonAzbell
    rboyd: Thanks for the follow up. This is a great tip when trying to debug such issues.
    on Dec 6, 2008
  • Forum Post: Re: 5xx LPM3 with UART wakeup?

    BrandonAzbell BrandonAzbell
    Have you looked at the code examples (SLAC166) provided on the MSP430F5438 Product Folder ? There are a couple of examples that configure the USCI for UART mode and use LPM0 and LPM3. They do use a different targeted baud rate, but this should provide some guidance. I realize this isn't a definitive...
    on Dec 7, 2008
  • Forum Post: Re: Need some hints for migrating from MSP430F14x to MSP430F54x

    BrandonAzbell BrandonAzbell
    milanqingren msp430f149 has 60KB + 256B flash. So, a 16bits pointer should be able to handle all of flash memeory spaces. However, msp430f5438 has 256KB + 512B flash memory, which introduces more than 16bits memory spaces. Therefore, how do I do deal with the memory spacing problem? Can I just use...
    on Feb 3, 2009
  • Forum Post: Re: Program to measure acceleration

    BrandonElliott BrandonElliott
    Hi There, The 5xx Experimenter's board (link: http://focus.ti.com/docs/toolsw/folders/print/msp-exp430f5438.html ) has a 3-axis accelerometer on the board, and there is demo software that utilizes this chip that could be modified to accomplish this task.
    on Feb 19, 2009
  • Forum Post: Re: MSP430x5438 USCI numbers

    BrandonElliott BrandonElliott
    Each USCI has two channels, A &B. Channel A supports UART, IrDA, LIN, and SPI while Channel B can support I2C and SPI. Therefore, if a customer is looking for 2 UART channels, the MSP430 should have at least 2 USCI modules. However, if they are looking for two SPI channels, 1 USCI module is enough...
    on Mar 17, 2009
  • Forum Post: Re: MSP430F5438 on-chip temperature sensor

    BrandonElliott BrandonElliott
    Please note the specs for the temperature sensor, figure 17 and Note 2 on page 62 of the datasheet . Essentially the temperature sensor can require a 1-point calibration to get a semi-accurate value, since the temp sensor can be as much as 20 degrees off initially (mentioned in Note 2). In my experience...
    on Mar 17, 2009
  • Forum Post: Load and debug with MSP-FETP430IF 1.4 not possible for MSP430F5438?

    Adde Adde
    Hi I'm trying to flash and debug my target board, which is running a MSP430 F5438 , but it's not working . The FET is old, purchased somewhere in the timeframe 2003-2005. I can flash and debug a F449 without problem . Does my FET hardware not support F5438? Or is the FET firmware to old, if...
    on Mar 26, 2009
  • Forum Post: Read CPU frequency from registers on F5438?

    Adde Adde
    Is it possible to read out the CPU frequency from software registers, and is it also possible to read out the peripheral clock frequencies? I have looked in the user manual but have not found any code examples. I don't know how the system is going to be set up, just going to deliver a software...
    on Mar 30, 2009
  • Forum Post: Re: Read CPU frequency from registers on F5438?

    BrandonAzbell BrandonAzbell
    Adde Is it possible to read out the CPU frequency from software registers, and is it also possible to read out the peripheral clock frequencies? There isn't a single register that would provide this information, however, you should be able to determine the configuration of the device and how...
    on Mar 31, 2009
  • Forum Post: Interrupt vector specification, where to find?

    Adde Adde
    Hi, I'm wondering where the interrupt vectors are specified. From the example code for the F5438 device I can find the following vector: // Timer A0 interrupt service routine #pragma vector=TIMER1_A0_VECTOR __interrupt void TIMER1_A0_ISR(void) { P1OUT ^= 0x01; // Toggle P1.0...
    on Apr 6, 2009
  • Forum Post: Re: Interrupt vector specification, where to find?

    BrandonElliott BrandonElliott
    Hi, There are a few references that can help you understand the function & scope of each interrupt: 1. The User's Guide: At the end of each chapter the interrupt scheme is described, and in the systems chapter the types of interrupts are specified. This is the primary document to refer to...
    on Apr 6, 2009
  • Forum Post: Re: Interrupt vector specification, where to find?

    BrandonAzbell BrandonAzbell
    The definition of the TIMER1_A0_VECTOR and TIMER1_A1_VECTOR are found in the msp430x54x.h header file which should be included in the *.c file this code is found in. You will find the other vectors defined in that file as well. In general, when asked where a symbol is defined, I generally do a search...
    on Apr 6, 2009
  • Forum Post: Re: Interrupt vector specification, where to find?

    Adde Adde
    BrandonAzbell The definition of the TIMER1_A0_VECTOR and TIMER1_A1_VECTOR are found in the msp430x54x.h header file which should be included in the *.c file this code is found in. You will find the other vectors defined in that file as well. Yes, I had no trouble finding these. It was more about their...
    on Apr 6, 2009
  • Forum Post: Re: Interrupt vector specification, where to find?

    BrandonAzbell BrandonAzbell
    Please take a look at the MSP430F5438 datasheet on the Product Folder in the Interrupt Vector Addresses section on page 14. You will see 2 interrupts associated with Timer_B0. One for the CCIFG0 and one for the CCIFG[1-6]. Also, in the MSP430x5xx Family User's Guide ( SLAU208 ) in Section 13.2...
    on Apr 6, 2009
  • Forum Post: Re: Too large .out/txt release executable

    Adde Adde
    You're right, the actual code size is not that big. How do the file size at my PC disk relate to the "absoulte/final" file size? I look in my .map file and I see that all of flash and most part of flash2 is occupied. At this point interrupts ain't working, single-steping the code...
    on Apr 11, 2009
  • Forum Post: malloc and free functions halt execution

    Adde Adde
    Hi My application is rather big, approximately 200 kB. I have set my heap to 6000 kB and my stack to 2000 kB. My compiler is CCE Professional 3.2xxxx. I use the large memory model and large data model and is linking with rts430xl.lib. I have been getting trouble when using malloc and free. Sometimes...
    on Apr 12, 2009
  • Forum Post: Re: Excessive power consumption of the MSP430f5xxx

    BrandonElliott BrandonElliott
    Al, You definitely should not see current consumption so high. What peripherals are you using? Are you using a custom board? I recommend running a example code ( www.ti.com/msp430codeexamples ) and see if the current consumption is reduced. If the problem goes away you can focus on software, else...
    on Apr 15, 2009
  • Forum Post: XT1 HF crystal fault flag will not clear, F5438

    Adde Adde
    Hi, I'm trying to configure my F5438 device to use an external HF crystal to source MCLK and SMCLK. I have been following example code and made some smaller changes since it wasn't exactly applicable. This is my code: P7SEL |= 0x03; // Port select XT1 UCSCTL6 |= XT1BYPASS; // XT1 sourced...
    on Apr 19, 2009
  • Forum Post: Re: Beginner MSP430 Help + Bluetooth module interfacing

    BrandonAzbell BrandonAzbell
    TJ I'm new to prototyping with MSP and I need to interface a blugiga wt11 bluetooth module with an MSP430F5438. My understanding is that simply connecting the bluetooth modules Rx and Tx pins to the MSP's UART pin's would suffice. however would I need to implement RS232 flow control via...
    on Apr 21, 2009
  • Forum Post: Re: MSP430F5438 BSL Problem

    BrandonElliott BrandonElliott
    FYI the chips with BSL disabled are the experimental "XMS" chips. If your top-side markings have XMS430... instead of MSP430 then your BSL is disabled! Order or sample a newer revision.
    on Apr 21, 2009
  • Forum Post: Re: MSP430F5438 false breakpoint hits while debugging

    BrandonElliott BrandonElliott
    How many breakpoints are you using when this happens? When you say it's stopping in the ISR is there a breakpoint in the ISR? If so this could be a timing issue. The debugger utilizes the embedded emulation module of the MSP430. This element controls only the CPU. Now, the Timer is a hardware peripheral...
    on May 13, 2009
  • Forum Post: Re: 5xx LPM3 with UART wakeup?

    Oliver P Oliver P
    Hello. I made the same observation as described above. The examples are not helpfull in this case, as mentioned earlier. They do not address a comparable scenario (8MHz SMCLK, 115.2kBaud, LPM3). SMCLK remains active although it should be off in LPM3 when no other module is requesting the SMCLK and...
    on May 15, 2009
  • Forum Post: Re: MSP430F5438 -- UART interfering with ADC

    BrandonAzbell BrandonAzbell
    It is unclear what issue you are having, but I would suggest not having the call to Xbee_Command() within your ADC interrupt service routine. While you are in the interrupt service routine, the Global Interrupt Enable is "disabled", therefore no other interrupts will be recognized and serviced...
    on May 17, 2009
  • Forum Post: Re: MSP430F5438 -- UART interfering with ADC

    Alfredo Alfredo
    I am sorry, I was trying to explain my code and forgot to explain the real problem. The thing is that when I initialize both the ADC and the UART, my code will never enter into the ISR. If I initialize the UART and comment out the ADC code, then I can send all the commands I'd like. If I comment...
    on May 17, 2009
12345»
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