element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
RoadTests & Reviews
  • Products
  • More
RoadTests & Reviews
Review Blogs LEDRoadTestPlus - Conclusions
  • Blogs
  • RoadTest Forum
  • Documents
  • RoadTests
  • Reviews
  • Polls
  • Files
  • Members
  • Sub-Groups
  • More
  • Cancel
  • New
Join RoadTests & Reviews to participate - click to join for free!
  • Share
  • More
  • Cancel
  • Author Author: amgalbu
  • Date Created: 6 Jan 2016 12:14 PM Date Created
  • Views 383 views
  • Likes 1 like
  • Comments 0 comments
Related
Recommended
  • tps92512evm-001
  • tps92512
  • ledroadtestplus
  • msp430fr133

LEDRoadTestPlus - Conclusions

amgalbu
amgalbu
6 Jan 2016

In these post I will note down my impressions about the components of the kit I used in my project, namely

  • MSP430FR4133 LaunchPad Development Kit (MSP-EXP430FR4133MSP-EXP430FR4133)
  • TPS92512 Buck Regulator

 

MSP430FR4133 LaunchPad Development Kit (MSP-EXP430FR4133MSP-EXP430FR4133)

The out-of-the-box impression has been very good. Just providing power by simply connecting the provided USB cable to a PC or a USB charger, makes the pre-installed demo application to run. This gives you a good overview of the display capabilities

The overall layout of the board is very good for prototyping. The display and the switch buttons S1 and S2 are close to you, whereas the pinheaders are a bit farther away, so that connections to  the external board to not hinder you. The only drawback is that the USB connector is locate too far from your computer and the provided USB cable is a bit shorter than standard ones. However, it easy to understand the rationale behind this choice: the components required to implement the debug capabilities are kept clearly separated from the rest of the board, and can be easily disconnected by removing some jumpers.

The pin headers can be used to connect a booster pack to extend board capabilities or to connect wires that lead to your bread board. The area around the pin headers is clear from any component. This is good since it makes a bit more difficult to make short-circuit with a scope's probe or a wire

 

What I liked the most in this processor is the FRAM. FRAM is a non-volatile memory technology that is uniquely flexible and can be used for program or data memory. It can be written to in a bit-wise fashion and with virtually unlimited write cycles.

Variables are allocated in SRAM by the default linker command files. FRAM-based MSP430FR5969 device has 2KB of SRAM. If the variable size is too large to fit in SRAM, the linker command file can be modified or C-language #pragma directives can be used to allocate specific variables or structures in FRAM memory.

The toolchains available for MSP430 all ship with linker command files that define a default memory setup and partitioning, typically allocating program code and constant data into FRAM, and variable data and the system stack to SRAM. In addition, C compiler language extensions are provided that allow you to locate selected variables and data structures into FRAM, allowing you to utilize the benefits of using FRAM for persistent data storage without any further considerations regarding memory partitioning or modifications of the linker command files.

In CCS, there are two C language pragma statements that can be used: #pragma PERSISTENT and #pragma NOINIT. PERSISTENT causes variables to not get initialized by the C startup routine, but rather the debug tool chain initializes them for the first time as the application code is loaded onto the target device. Subsequently, those variables do not get initialized, for example, after a power cycle as they have been completely excluded from the C startup initialization process. Declaring variables as PERSISTENT causes them to get allocated into the .TI.persistent linker memory segment.

Here is a code snippet showing how the variable is declared as persistent:

 

 

#pragma PERSISTENT(x)

unsigned int x = 5;

 

 

The MSP430FR133 can be programmed using either the Energia IDE or the CCS. I chose the latter option.

The installation of the CCS environment has been absolutely hassle-free. On the Texas Instruments site there is plenty of examples to start with programming with.

However, I'd like here to talk about two features I think are very useful to develop the low-power applications:

 

Energy Trace

This tool continuously monitor the consumption of the CPU. Probably the CPU consumption is just a fraction of the consumption of the complete board, but this at least a useful tool for easily optimizing the usage of Low-power modes supported by the MSP430

 

ULP Advisor

This tool analyzes your code and provides hints to reduce power consumptions. Some hints are so easy to implement that worths the while. An example of the hints the ULP advisor provides is to initialize unused pins: this can be easily accomplished and can save important microamperes in battery-powered applications

 

 

TPS92512 Buck Regulator

The evaluation board uses a very good step-down current regulator (the TPS92512) that can draw up to 2.5A. I didn't push the TPS92512 to the limits, but I really appreciated it's capability to keep the output current very stable even with the PDIM input switched at the maximum allowed frequency

The evaluation board is built with quality components. From a maker's point of  view, I appreciated the screw connectors for the power input and LEDs output. However, I would have added some holes for soldering wires to the control pins (on the evaluation board there are only pin headers)

  • Sign in to reply
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube