LTC2943---具温度、电压和电流测量功能的多节电池电量测量芯片.doc
《LTC2943---具温度、电压和电流测量功能的多节电池电量测量芯片.doc》由会员分享,可在线阅读,更多相关《LTC2943---具温度、电压和电流测量功能的多节电池电量测量芯片.doc(36页珍藏版)》请在咨信网上搜索。
1、LTC2943 - 具温度、电压和电流测量功能的多节电池电量测量芯片特点 可测量累积的电池充电和放电电量 3.6V 至 20V 工作范围可适合多种电池应用 14 位 ADC 负责测量电池电压、电流和温度 1% 电压、电流和充电准确度 50mV 检测电压范围 高压侧检测 适合任何电池化学组成和容量的通用测量 I2C / SMBus 接口 可配置警报输出 / 充电完成输入 静态电流小于 120A 小外形 8 引脚 3mm x 3mm DFN 封装典型应用描述LTC2943可测量便携式产品应用中的电池充电状态、电池电压、电池电流及其自身温度。其具有宽输入电压范围,因而可与高达20V的多节电池配合使用
2、。一个精准的库仑计量器负责对流经位于电池正端子和负载或充电器之间的一个检测电阻器电流进行积分运算。电池电压、电流和温度利用一个内部14位无延迟增量累加(No Latency TM) ADC来测量。测量结果被存储于可通过内置I2C / SMBus接口进行存取的内部寄存器中。LTC2943具有针对所有4种测量物理量的可编程高门限和低门限。如果超过了某个编程门限,则该器件将采用SMBus警报协议或通过在内部状态寄存器中设定一个标记来传送警报信号。LTC2943仅需采用单个低阻值检测电阻器以设定测量电流范围。应用 电动工具 电动自行车 便携式医疗设备 视频摄像机程序:#include #include
3、 #include Linduino.h#include LT_I2C.h#include UserInterface.h#include QuikEval_EEPROM.h#include LTC2943.h#include / Function Declarationvoid print_title(); / Print the title blockvoid print_prompt(); / Print the Promptvoid store_alert_settings(); / Store the alert settings to the EEPROMint8_t restor
4、e_alert_settings(); / Read the alert settings from EEPROM#define AUTOMATIC_MODE_DISPLAY_DELAY 1000 /! The delay between readings in automatic mode#define SCAN_MODE_DISPLAY_DELAY 10000 /! The delay between readings in scan modeconst float resistor = .100; /! resistor value on demo board/ Error string
5、const char ack_error = Error: No Acknowledge. Check I2C Address.; /! Error message/ Global variablesstatic int8_t demo_board_connected; /! Set to 1 if the board is connectedstatic uint8_t alert_code = 0; /! Value stored or read from ALERT register. Shared between loop() and restore_alert_settings()/
6、! Initialize Linduinovoid setup() char demo_name = DC1812; /! Demo Board Name stored in QuikEval EEPROM quikeval_I2C_init(); /! Configure the EEPROM I2C port for 100kHz quikeval_I2C_connect(); /! Connects to main I2C port Serial.begin(115200); /! Initialize the serial port to the PC print_title(); d
7、emo_board_connected = discover_demo_board(demo_name); if (demo_board_connected) print_prompt(); else demo_board_connected = true;Serial.println(Did not read ID String, attempting to proceed anyway.nPlease ensure I2C lines of Linduino are connected to the LTC device); /! Repeats Linduino loopvoid loo
8、p() int8_t ack = 0; /! I2C acknowledge indicator static uint8_t user_command; /! The user input command static uint8_t mAh_or_Coulombs = 0; static uint8_t celcius_or_kelvin = 0; static uint16_t prescalar_mode = LTC2943_PRESCALAR_M_4096; static uint16_t prescalarValue = 4096; static uint16_t alcc_mod
9、e = LTC2943_ALERT_MODE; if (demo_board_connected) /! Do nothing if the demo board is not connected if (Serial.available() /! Do nothing if serial is not available user_command = read_int(); /! Read user input command if (user_command != m) Serial.println(user_command); Serial.println(); ack = 0; swi
10、tch (user_command) /! Prints the appropriate submenu case 1: ack |= menu_1_automatic_mode(mAh_or_Coulombs, celcius_or_kelvin, prescalar_mode, prescalarValue, alcc_mode); /! Automatic Mode break; case 2: ack |= menu_2_scan_mode(mAh_or_Coulombs, celcius_or_kelvin, prescalar_mode, prescalarValue, alcc_
11、mode); /! Scan Mode break; case 3: ack |= menu_3_manual_mode(mAh_or_Coulombs, celcius_or_kelvin, prescalar_mode, prescalarValue, alcc_mode); /! Manual Mode break; case 4: ack |= menu_4_sleep_mode(mAh_or_Coulombs, prescalar_mode, prescalarValue, alcc_mode); /! Sleep Mode break; case 5: ack |= menu_5_
12、shutdown_mode(); /! Shutdown Mode break; case 6: ack |= menu_6_settings(&mAh_or_Coulombs, &celcius_or_kelvin, &prescalar_mode, &prescalarValue, &alcc_mode); /! Settings Mode break; if (ack != 0) /! If ack is not recieved print an error. Serial.println(ack_error); Serial.print(F(*); print_prompt(); /
13、 Function Definitions/! Print the title blockvoid print_title() Serial.println(F(n*); Serial.print(F(* DC1812A Demonstration Program *n); Serial.print(F(* *n); Serial.print(F(* This program communicates with the LTC2943 Multicell Coulomb *n); Serial.print(F(* Counter found on the DC1812A demo board.
14、 *n); Serial.print(F(* Set the baud rate to 115200 and select the newline terminator.*n); Serial.print(F(* *n); Serial.print(F(*n);/! Print the Promptvoid print_prompt() Serial.print(F(n1-Automatic Moden); Serial.print(F(2-Scan Moden); Serial.print(F(3-Manual Moden); Serial.print(F(4-Sleep Moden); S
15、erial.print(F(5-Shutdown Moden); Serial.print(F(6-Settingsn); Serial.print(F(Enter a command: );/! Automatic Mode.int8_t menu_1_automatic_mode(int8_t mAh_or_Coulombs, int8_t celcius_or_kelvin ,uint16_t prescalar_mode, uint16_t prescalarValue, uint16_t alcc_mode) /! return Returns the state of the ac
16、knowledge bit after the I2C address write. 0=acknowledge, 1=no acknowledge. int8_t LTC2943_mode; int8_t ack = 0; LTC2943_mode = LTC2943_AUTOMATIC_MODE|prescalar_mode|alcc_mode ; /! Set the control register of the LTC2943 to automatic mode as well as set prescalar and AL#/CC# pin values. Serial.print
17、ln(); ack |= LTC2943_write(LTC2943_I2C_ADDRESS, LTC2943_CONTROL_REG, LTC2943_mode); /! Writes the set mode to the LTC2943 control register do Serial.print(F(*nn); uint8_t status_code, hightemp_code, lowtemp_code; uint16_t charge_code, current_code, voltage_code, temperature_code; ack |= LTC2943_read
18、_16_bits(LTC2943_I2C_ADDRESS, LTC2943_ACCUM_CHARGE_MSB_REG, &charge_code); /! Read MSB and LSB Accumulated Charge Registers for 16 bit charge code ack |= LTC2943_read_16_bits(LTC2943_I2C_ADDRESS, LTC2943_VOLTAGE_MSB_REG, &voltage_code); /! Read MSB and LSB Voltage Registers for 16 bit voltage code a
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- LTC2943 温度 电压 电流 测量 功能 节电 电量 芯片
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【w****g】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【w****g】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。