tag 标签: bandgap

相关博文
  • 热度 4
    2021-1-21 15:41
    5521 次阅读|
    2 个评论
    N76E003 可以使用单节锂电池直接供电。不需要使用任何AD通道,利用内部集成的带隙参考源可以测量供电电压 带隙参考源 bandgap 标称电压为 1.22V,ADC的参考源为单片机供电电压,当供电电压变化时,测得的Bandgap电压值会不一样。 可以使用公式: 供电电压 = 1.22*4095/Bandgap采样值 求出供电电压。 下面的代码是启动Bandgap 进行AD转换,最后获得小数点后两位的电压值。 Enable_ADC_BandGap; clr_ADCF; set_ADCS; // Each time ADC start trig signal while(ADCF == 0); i = 0; tempstr ='V';tempstr ='a';tempstr ='l';tempstr =':'; // 供电电压 = 1.22*4095/Bandgap采样值 temp = ADCRH; temp <<= 4; temp += (ADCRL & 0x0F); // 取得带隙采样值 temp1 = 49959 % temp; // 取得余数 temp1 *= 10; temp1 = temp1 / temp; // 得到小数位 temp = 49959 / temp; //扩大10倍 12.2*4095 Bandgap BatVolt = temp; // 保存电池电压 tempstr = '0' + temp / 10; temp %= 10; tempstr = '.'; tempstr = '0' + temp; tempstr = '0' + temp1; tempstr = 'V'; tempstr = '\r';tempstr = '\n';tempstr = '\0'; Send_Str_To_UART0(tempstr,i);
相关资源
  • 所需E币: 4
    时间: 2019-12-24 23:21
    大小: 269.26KB
    上传者: wsu_w_hotmail.com
    摘要:如果应用中是在完成系统部署后写入EPROM器件,此时需要对5V器件提供过压保护。本文介绍如何在同一总线上使用1-WireEPROM和5V1-Wire器件,以及如何保护5V器件不受编程脉冲的冲击。为5V1-Wire从器件提供过压保护BernhardLinke,首席技术专家Mar01,2012摘要:如果应用中是在完成系统部署后写入EPROM器件,此时需要对5V器件提供过压保护。本文介绍如何在同一总线上使用1-WireEPROM和5V1-Wire器件,以及如何保护5V器件不受编程脉冲的冲击。引言大多数1-Wire器件工作在2.8V至5.25VVPUP,进行读、写操作。EPROM器件(包括DS2406、DS2502、DS1982、DS2505和DS1985)需要12V编程脉冲进行写操作。而编程脉冲对于不能承受5.5V以上电压的器件构成了过压威胁。因此,如果应用中需要在完成系统部署之后写入EPROM器件,则要对5V器件进行保护(图1)。本文电路具有高达40V的正向过压保护,在电压高于12VEPROM编程脉冲的条件下提供系统防护。图1.包含5V和12V器件的1-Wire总线保护电路要求合适的保护电路需要满足以下几项要求:对1-Wire总线形成非常低的负载不妨碍1-WireEPROM编程适当保护5V1-Wire器件维持完整的通信信号幅值此外,最好采用常用的低成本元件构建保护电路。基本原理图2所示为非常简单的保护电路。齐纳二极管U1限制Q1的栅极电压,R1限制通过U1的电流。Q1为n沟道MOSFET,配制成源极跟随器,栅极电压减去一个小的偏移电压后达到1-Wire从器件的IO电压。为维持完整的通信信号幅值,偏移电压应尽可能低。具有负偏压的耗尽型MOSFET非常适合这一应用。对SupertexDN3135进行测试,测得其偏压为-1.84V(数据资料参数VGS(OFF))。由此,要求栅极电压VG为3.16V,决定了U1的……
  • 所需E币: 3
    时间: 2019-12-24 22:53
    大小: 274.02KB
    上传者: 238112554_qq
    摘要:如果应用中是在完成系统部署后写入EPROM器件,此时需要对5V器件提供过压保护。本文介绍如何在同一总线上使用1-WireEPROM和5V1-Wire器件,以及如何保护5V器件不受编程脉冲的冲击。为5V1-Wire从器件提供过压保护BernhardLinke,首席技术专家Mar01,2012摘要:如果应用中是在完成系统部署后写入EPROM器件,此时需要对5V器件提供过压保护。本文介绍如何在同一总线上使用1-WireEPROM和5V1-Wire器件,以及如何保护5V器件不受编程脉冲的冲击。引言大多数1-Wire器件工作在2.8V至5.25VVPUP,进行读、写操作。EPROM器件(包括DS2406、DS2502、DS1982、DS2505和DS1985)需要12V编程脉冲进行写操作。而编程脉冲对于不能承受5.5V以上电压的器件构成了过压威胁。因此,如果应用中需要在完成系统部署之后写入EPROM器件,则要对5V器件进行保护(图1)。本文电路具有高达40V的正向过压保护,在电压高于12VEPROM编程脉冲的条件下提供系统防护。图1.包含5V和12V器件的1-Wire总线保护电路要求合适的保护电路需要满足以下几项要求:对1-Wire总线形成非常低的负载不妨碍1-WireEPROM编程适当保护5V1-Wire器件维持完整的通信信号幅值此外,最好采用常用的低成本元件构建保护电路。基本原理图2所示为非常简单的保护电路。齐纳二极管U1限制Q1的栅极电压,R1限制通过U1的电流。Q1为n沟道MOSFET,配制成源极跟随器,栅极电压减去一个小的偏移电压后达到1-Wire从器件的IO电压。为维持完整的通信信号幅值,偏移电压应尽可能低。具有负偏压的耗尽型MOSFET非常适合这一应用。对SupertexDN3135进行测试,测得其偏压为-1.84V(数据资料参数VGS(OFF))。由此,要求栅极电压VG为3.16V,决定了U1的……
  • 所需E币: 4
    时间: 2019-12-24 22:11
    大小: 66.57KB
    上传者: quw431979_163.com
    Abstract:TheBandgapReferenceCalculator(BGRC)aidsinthedesignandanalysisofaBrokawbandgapreferencecircuit.Itcalculatesallcircuitparametersandtheoutputvoltageasafunctionofjunctiontemperature.ThecalculatorcanbeusedwithanHP®50gcalculatororafreePCemulator.Maxim>DesignSupport>AppNotes>A/DandD/AConversion/SamplingCircuits>APP5062Maxim>DesignSupport>AppNotes>AmplifierandComparatorCircuits>APP5062Maxim>DesignSupport>AppNotes>DigitalPotentiometers>APP5062Keywords:accuracycalculatortutorial,analogdigitaldesignanalysis,dataconverterapplicationcircuits,HP50g,voltagereference,Bandgap,BandGap,Brokawcell,magictemperature,curvaturecorrection,lineartransferfunction,temperaturecoefficient,TempcoAug09,2011APPLICATIONNOTE5062BandgapReferenceCalculatorTutorialBy:BillLaumeister,StrategicApplicationsEngineerAbstract:TheBandgapReferenceCalculator……
  • 所需E币: 4
    时间: 2019-12-24 21:52
    大小: 104.61KB
    上传者: quw431979_163.com
    Abstract:Self-startingisanecessarybutsometimesdifficulttask,whetheritismotivatinghumans,startingcoldautomobiles,orprovidingpower-on-reset(POR)forICs.PORsensuresystemsstartinknownandsafestates.Wewilldiscussseveralmisapplicationsofthistechnologyandhowdesignerscanavoidstartupproblems.Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>AmplifierandComparatorCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>Automotive>APP4606Keywords:Self-start,opamp,buriedzener,bandgap,parasiticdevice,triac,electrostaticdischarge,ESD,PTAT,proportionaltoabsolutetemperature,Schottkydiode,poweronreset,POR,voltagereferenceDec14,2011TUTORIAL4606Self-StartingCanBeHardtoDo―UnderstandingPower-on-ResetRequirementsinRegulatorsandBandgapsBy:BillLaumeister,StrategicApplicatio……
  • 所需E币: 3
    时间: 2019-12-24 19:47
    大小: 104.61KB
    上传者: quw431979_163.com
    摘要:自启动是必要的,但有时是困难的任务,无论是激励人类,开始感冒汽车,或提供上电复位(POR),集成电路(IC)。PORS确保系统中已知的和安全的状态开始。我们将讨论几个误用这项技术,设计者可以如何避免启动的问题。Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>AmplifierandComparatorCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>Automotive>APP4606Keywords:Self-start,opamp,buriedzener,bandgap,parasiticdevice,triac,electrostaticdischarge,ESD,PTAT,proportionaltoabsolutetemperature,Schottkydiode,poweronreset,POR,voltagereferenceDec14,2011TUTORIAL4606Self-StartingCanBeHardtoDo―UnderstandingPower-on-ResetRequirementsinRegulatorsandBandgapsBy:BillLaumeister,StrategicApplicatio……
  • 所需E币: 3
    时间: 2019-12-24 18:24
    大小: 104.61KB
    上传者: wsu_w_hotmail.com
    摘要:自启动是必要的,但有时是困难的任务,无论是激励人类,开始感冒汽车,或提供上电复位(POR),集成电路(IC)。PORS确保系统中已知的和安全的状态开始。我们将讨论几个误用这项技术,设计者可以如何避免启动的问题。Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>AmplifierandComparatorCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>Automotive>APP4606Keywords:Self-start,opamp,buriedzener,bandgap,parasiticdevice,triac,electrostaticdischarge,ESD,PTAT,proportionaltoabsolutetemperature,Schottkydiode,poweronreset,POR,voltagereferenceDec14,2011TUTORIAL4606Self-StartingCanBeHardtoDo―UnderstandingPower-on-ResetRequirementsinRegulatorsandBandgapsBy:BillLaumeister,StrategicApplicatio……
  • 所需E币: 4
    时间: 2019-12-24 17:09
    大小: 85.93KB
    上传者: 978461154_qq
    摘要:绿色倡议带回家备用电源浪费问题。美国家庭通过减少其使用备用电源,可节省平均每年100美元。¹便携设备的电池寿命是非常重要的,但本应用笔记表明,节能家电在我们的家园也很关键,以减少对环境的废物。Maxim正在采取节能集成电路中的铅,这份文件列出了Maxim产品使用,以减少在家电,电脑,机顶盒的电源的例子。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>BatteryManagement>APP4427Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>DigitalPotentiometers>APP4427Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>GeneralEngineeringTopics>APP4427Keywords:standbypower,energyefficient,budgetpower,microampere,computers,notebook,set-topbox,batterylife,remoteairconditioning,environmentalimpact,voltagereference,quiescent,bandgapOct10,2011APPLICATIONNOTE4427DemonstratingGreenTechnologywithApples,Oranges,Lemons,andLimesBy:BillLaumeister,StrategicApplicationsEngineerOct10,2011……
  • 所需E币: 5
    时间: 2019-12-24 17:09
    大小: 104.61KB
    上传者: 2iot
    摘要:自启动是必要的,但有时是困难的任务,无论是激励人类,开始感冒汽车,或提供上电复位(POR),集成电路(IC)。PORS确保系统中已知的和安全的状态开始。我们将讨论几个误用这项技术,设计者可以如何避免启动的问题。Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>AmplifierandComparatorCircuits>APP4606Maxim>DesignSupport>TechnicalDocuments>Tutorials>Automotive>APP4606Keywords:Self-start,opamp,buriedzener,bandgap,parasiticdevice,triac,electrostaticdischarge,ESD,PTAT,proportionaltoabsolutetemperature,Schottkydiode,poweronreset,POR,voltagereferenceDec14,2011TUTORIAL4606Self-StartingCanBeHardtoDo―UnderstandingPower-on-ResetRequirementsinRegulatorsandBandgapsBy:BillLaumeister,StrategicApplicatio……
  • 所需E币: 5
    时间: 2019-12-24 17:09
    大小: 66.57KB
    上传者: rdg1993
    摘要:带隙基准计算器(BGRC)艾滋病的布罗考的带隙基准电路的设计和分析。所有电路参数和输出电压的计算结温的函数。惠普®50G计算器或免费的PC模拟器可以使用计算器。Maxim>DesignSupport>AppNotes>A/DandD/AConversion/SamplingCircuits>APP5062Maxim>DesignSupport>AppNotes>AmplifierandComparatorCircuits>APP5062Maxim>DesignSupport>AppNotes>DigitalPotentiometers>APP5062Keywords:accuracycalculatortutorial,analogdigitaldesignanalysis,dataconverterapplicationcircuits,HP50g,voltagereference,Bandgap,BandGap,Brokawcell,magictemperature,curvaturecorrection,lineartransferfunction,temperaturecoefficient,TempcoAug09,2011APPLICATIONNOTE5062BandgapReferenceCalculatorTutorialBy:BillLaumeister,StrategicApplicationsEngineerAbstract:TheBandgapReferenceCalculator……
  • 所需E币: 4
    时间: 2020-1-13 14:41
    大小: 192.42KB
    上传者: rdg1993
    Acircularlypolarizedmicrostripantennawithaphotonicbandgapgroundplane……
  • 所需E币: 3
    时间: 2020-1-13 14:54
    大小: 108.37KB
    上传者: quw431979_163.com
    analysis_of_photonic_bandgap_surfacesAPPLICATIONNOTEANALYSISOFPHOTONICBANDGAPSURFACESUSINGANSOFTHFSSTFig.1DielectricrodPBGcrystalwithwaveguidesimulatorcelldefined(Γ-Xtransmissiondirection).whemicrowaveindustryrecentlyfoundnewusesforconceptsfamiliartosolidstatedesignersintheformofphotonicbandgap(PBG)constructions.PBGconstructionsoffertheabilitytoproducesubstrates,groundplanesandotherstructures,whichhaveaforbiddenfrequencyrange,orbandgap,thatdoesnotsupportelectromagneticwaves.Thisbehaviorarisesfromsomeformofperiodicity,ineithermaterialcharacteristicsorinacircuitlayer,thatreactstoelectromagneticfieldsinmuchthesamewaythatcrystallatticestructuresdo.PBGsurfaces―whichoftenbecomemagneticconductorswithintheirbandgap……
  • 所需E币: 5
    时间: 2020-1-14 18:18
    大小: 1.18MB
    上传者: quw431979_163.com
    Aprecisioncurvature-compensa...,Aprecisioncurvature-compensatedCMOSbandgapreference……
  • 所需E币: 4
    时间: 2020-1-14 18:19
    大小: 133.28KB
    上传者: 978461154_qq
    Introductionofbandgap,bandgap……
  • 所需E币: 4
    时间: 2020-1-14 18:20
    大小: 156.9KB
    上传者: 微风DS
    低功耗BANDGAP设计,low_power_bandgap……
  • 所需E币: 5
    时间: 2020-1-14 18:57
    大小: 50.84KB
    上传者: 238112554_qq
    一个bandgap代码,bandgapcircuit[1]……
  • 所需E币: 4
    时间: 2020-1-14 14:58
    大小: 638.69KB
    上传者: 238112554_qq
    lowvoltlowpowercmosbandgaprefLowVoltage,LowPowerCMOSBandgapReferencesECE1352……