Programmable metering devices with low-cost analog front ends [Texas Instruments]

Publisher:EETechTinkererLatest update time:2011-04-08 Source: EEWORLD Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

April 8, 2011, Beijing

Recently, Texas Instruments (TI) announced the launch of the MSP430AFE2xx series of metering analog front-end (AFE) ultra-low-power 16-bit microcontrollers for metering and smart grid applications. The low-cost MSP430AFE series is part of TI's leading embedded processing product line, providing the industry's first programmable single-phase metering devices supported by multiple communication interfaces. This series of microcontrollers supports system partitioning for metering applications such as electricity meters, home automation, auxiliary metering, and energy-saving systems, enabling highly flexible independent high-quality measurements. The MSP430AFE series is built on a 16-bit RISC architecture and supports a 12MHz system frequency, which is three times faster than similar competing devices, thereby improving functionality. Three independent 24-bit Σ-Δ converters with anti-tampering functions help this series of microcontrollers achieve energy accuracy errors of less than 0.1% over a wide dynamic range of 2400:1.

In addition, the MSP430AFE2xx family also has a variety of tools, demonstrations, and EVM support, which can provide developers with several options to start evaluation and quickly enter production. The MSP430 energy watchdog demonstration with RF function can display the power usage of any plugged-in device on the LCD display, which can help users manage energy use and save money. The programmable MSP430AFE EVM can be used as a calibrated meter to test the new MSP430AFE2xx. In addition, the MSP-TS430PW24 target board and MSP-FET430U24 flash emulation tool can be used to program and debug MSP430AFE devices.

Key Features and Benefits of the MSP430AFE2xx Family
• Single-phase metering analog front end supports 0.1% accuracy error over a dynamic range of 2400:1;
• Three 24-bit Σ-Δ analog-to-digital converters (ADCs) sample simultaneously to support single-phase measurement and anti-tampering capabilities, while using a small 24-pin TSSOP package to minimize space savings;
• Programmable MSP430AFE devices provide highly flexible system design and high performance;
• TI's comprehensive libraries for energy, power, voltage, current and several other important metering standards support fast and robust single-phase metering implementations;
• Up to 16KB of flash and 512B of RAM support programmable memory through SPI and UART interfaces for high design flexibility;
• Integrated peripherals including 16-bit timers, watchdogs and hardware multipliers help customers control tasks in ultra-low power modes for math-intensive calculations;
• A wide range of development tools, EVMs and demos, as well as free downloadable software debuggers and compilers (including Code Composer Studio™ IDE and IAR Embedded workbench) can speed up production.

TI's broad portfolio of MCUs and software

From general-purpose ultra-low-power MSP430 MCUs to 32-bit MCUs based on Stellaris® Cortex™-M3, to high-performance real-time control TMS320C2000™ MCUs, TI can provide designers with the most comprehensive microprocessor solutions. By making full use of TI's complete hardware and software tools, extensive third-party products and technical support, designers can accelerate the time to market.

TI's Smart Grid Solutions

TI provides customers with smart grid solutions through innovative products, advanced software technology and compatible integrated system solutions. TI's smart grid products integrate unique practical silicon technology, software and supporting technologies, which can be fully applied in smart grid infrastructure construction, practical metering, and home and public building automation systems.

Reference address:Programmable metering devices with low-cost analog front ends [Texas Instruments]

Previous article:Design and implementation of embedded SNMP agent based on single chip microcomputer
Next article:Design solution of single chip microcomputer and PCI interface based on CPLD

Recommended ReadingLatest update time:2024-11-16 21:49

Infrared remote control decoding based on MSP430
          There are many special chips for remote control transmitters, which can be divided into two categories according to the encoding format. Here we will use the one that is more widely used and easier to decode to explain. Now we will take the Japanese NEC uPD6121G transmitter circuit as an example to explain th
[Microcontroller]
Infrared remote control decoding based on MSP430
The necessity of learning MSP430
1. Advantages of 430 • Low power consumption, ultra-low power consumption, it has one active mode and five low power modes. In active mode, the power consumption is only 250us/MIPS, and the maximum leakage current of the I/O input port is only 50nA. • It has powerful data processing capabilities and uses a RISC (reduc
[Microcontroller]
The necessity of learning MSP430
Clock signal of MSP430 microcontroller
  MSP430 has three clock signals: MCLK system main clock; SMCLK system sub-clock; ACLK auxiliary clock.      (1) MCLK system main clock. In addition to the CPU operation using this clock, peripheral modules can also use it. MCLK can select the clock signal generated by any oscillator and divide it by 1, 2, 4, or 8 as
[Microcontroller]
How to solve the problem of "INF cannot find the required section" when installing MSP430 USB JTAG
I have done experiments before and found that the INF error of this emulator appeared on my computer. I guessed that it might be the system problem, because I have taken the emulator to a computer with the same non-simplified system and there was no problem. Today I finally found a solution: 1. First, follow the steps
[Microcontroller]
Problems with defining very large arrays in MSP430
The IAR compilation method causes the watchdog to overflow. The watchdog is already started when the microcontroller is powered on, but before entering the main function, the software will first initialize some of the data you use, such as arrays. If your array is defined to be large, the initialization time will be ve
[Microcontroller]
MSP430 drives DDS module AD9851
#include "msp430x14x.h"      #define ad9581_w_clk P2DIR|=BIT0 //Write clock signal to P2.0 port   #define ad9581_w_clk_H P2OUT|=BIT0 //P2.0 outputs high level   #define ad9581_w_clk_L P2OUT&=~BIT0 //P2.0 outputs low level      #define ad9851_fq_up P2DIR|=BIT1 //Write frequency value to P2.1 port   #define ad9
[Microcontroller]
MSP430 porting printf and scanf
Hardware Introduction: The hardware part only needs character input and output devices: scanf reads characters from the input character device, and printf outputs to the character output device. Here, the character input device I chose is the hyperterminal, which is connected to the microcontroller through the serial
[Microcontroller]
MSP430 porting printf and scanf
Design of cardiopulmonary auscultation skills training system based on MSP430
Based on the development of modern medical simulation teaching, the cardiopulmonary auscultation skill training system based on MSP430 has changed the past use of radio frequency and special stethoscopes to imitate the cardiopulmonary auscultation process, and the operation is more realistic in the clinical real env
[Microcontroller]
Design of cardiopulmonary auscultation skills training system based on MSP430
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号