tag 标签: sleep

相关博文
  • 热度 21
    2014-9-26 11:32
    1849 次阅读|
    0 个评论
    This is not a trick question. Your options for answers are as follows: Always Sometimes Maybe It depends As with most engineering issues, the correct answer is either c or d, based on your perspective, your priorities, and the specifics of the situation. It also is related to the basic definition of power and energy: Energy is the time integral of power. Many people, however, confuse "energy" and "power" both in concept and as physical entities.   I started thinking about this again after reading a brief Wall Street Journal piece, " Europe's Dirty Floor Mandate " (subscription required), and a related article in the Telegraph, " EU to ban high-energy hair dryers, smartphones and kettles ." According to the WSJ, "Consumers are only now noticing Regulation 666/2013, adopted by the European Commission last year and taking effect next month, which bans the manufacture or importing of vacuum motors whose power output exceeds 1,600 watts, with the limit dropping to 900 watts after Sept. 1, 2017."   The Telegraph reports that similar power-reduction plans are in place for appliances such as hair dryers. All of this, of course, is in the name of "saving energy."   Here's the problem: If you can accomplish the same task with a lower-power motor as compared with a higher-power motor and in the same time , you certainly will have saved energy. But if it takes longer due to the reduced power level, you may end up using the same or even more energy. In the case of reducing the motor power in a vacuum cleaner, the consumer may have to run it longer, so we are back to basics: Actual energy used is the time integral of power.   Perhaps it is possible to reduce a vacuum cleaner's power consumption significantly, while getting the same results, by using a more efficient motor and airflow arrangement. I don't know how efficient a vacuum cleaner really is or how much upside potential there may be. I do know that more efficient motors generally require more copper wire in their windings, so power consumption may be reduced for a given suction rating and airflow volume, but the total cradle-to-grave energy "expense" may actually be higher. It's hard to say.   (Side note: I never understood why vacuum cleaner "powerfullness" was discussed in terms of motor current draw -- amps. That always seemed to be looking at the wrong end of the story, and it assumed all motors and their vacuum cleaners had equal input current/output performance ratios.)   What really has me puzzled is the push toward greater electrical efficiency in appliances where the core function is to provide heat, such as hair dryers. A 1,000W dryer will surely take longer to dry hair than a 1,500W unit.   Aren't hair dryers and other electric-heat products 100% efficient by definition, except perhaps for some losses in their fan and an IR drop in their AC wires? I once measured a commodity 1,200W hair dryer's power consumption in no-heat/cold-air-only mode. I found that the very noisy fan took only about 50 W, an insignificant amount compared to the 1,200W full-heat rating. Even a somewhat better fan motor would not make much difference in overall energy use.   Have you seen other examples where people confuse energy with power and think that, by reducing one, they will automatically save on the other? Have you seen cases where reducing power consumption has actually increased energy use? It even happens with power-miser low-power systems that have a sleep mode. Sometimes it is more energy efficient to have a short, high-power activity burst and a longer sleep period, rather than a longer, medium-power burst and shorter sleep mode.
  • 热度 21
    2013-8-8 09:13
    7031 次阅读|
    0 个评论
      STM32如何进入sleep模式 网上说STM32 STOP模式和Standby模式的不少,却很少有人说怎么操作Sleep模式,东西不多,加一个函数而已,废话不多,下面就给出添加的函数,各位COPY到自己的项目用就是了!! /* *  Brief  :  Enters SLEEP mode. */ #define PWR_SLEEPEntry_WFI         ((uint8_t)0x01) #define PWR_SLEEPEntry_WFE         ((uint8_t)0x02) #define SysCtrl_SLEEPONEXIT_Set    ((u16)0x0002) #define SysCtrl_SLEEPDEEP_Set  ((u16)0x0004) void PWR_EnterSLEEPMode(u32 SysCtrl_Set, u8 PWR_SLEEPEntry) {     if (SysCtrl_Set)          SCB-SCR |= SysCtrl_SLEEPONEXIT_Set;         else         SCB-SCR = ~SysCtrl_SLEEPONEXIT_Set;     SCB-SCR = ~SysCtrl_SLEEPDEEP_Set;         if(PWR_SLEEPEntry == PWR_SLEEPEntry_WFI)                    __WFI();                                             else         __WFE();                                 }
相关资源
  • 所需E币: 5
    时间: 2019-12-24 23:16
    大小: 453.9KB
    上传者: wsu_w_hotmail.com
    简要地讨论如何利用活动中断唤醒LPC1700系列和CAN总线活动的服务。AN10908WakeupfromDeepSleepusingtheCANActivityinterruptRev.01―25February2010ApplicationnoteDocumentinformationInfoContentKeywordsLPC1700,CANController,CANActivity,WIC,NVIC,DeepSleep,Power-downAbstractThisapplicationnoteismeanttobeaccompaniedwiththeCANActivitywakeupsampleproject.ItbrieflydiscussesonhowtoutilizetheCANActivityinterrupttowakeuptheLPC1700andserviceCANbusactivity.NXPSemiconductorsAN10908……
  • 所需E币: 4
    时间: 2019-12-24 23:14
    大小: 163.16KB
    上传者: quw431979_163.com
    本应用笔记中简要介绍了LPC1700系列在“正常”和“睡眠”模式当执行SRAM到GPIO的DMA数据传输控制器的DMA功能AN10850LPC1700timertriggeredmemorytoGPIOdatatransferRev.01―16July2009ApplicationnoteDocumentinformationInfoContentKeywordsLPC1700,GPIO,DMA,Timer0,SleepModeAbstractThisapplicationnotebrieflycoversthefunctionalityoftheLPC1700DMAcontrollerwhilstperformingaSRAMtoGPIODMAdatatransferin“Normal”and“Sleep”mode.NXPSemiconductorsAN10850GPIODMAdemoRevisionhistoryRevDateDescription0120090716Initialversion.……
  • 所需E币: 3
    时间: 2019-12-24 22:03
    大小: 42.17KB
    上传者: wsu_w_hotmail.com
    在本应用笔记讨论恩智浦桥接芯片如SC16IS750集成电路的睡眠编程(I2C-bus/SPI和简单的UART)实现。AN10571SleepprogrammingforNXPbridgeICsRev.01―5January2007ApplicationnoteDocumentinformationInfoContentKeywordsSC16IS750,BridgeIC,SleepprogrammingAbstractThesleepprogrammingofNXPBridgeICssuchasSC16IS750(I2C-bus/SPItosingleUART)isdiscussedinthisapplicationnote.Theconditionsofsleepandwake-uparedescribed.Inaddition,asamplecodeforsleepprogrammingisprovided.ThisapplicationnoteisalsoapplicabletootherbridgeICssuchasSC16IS740,SC16IS760,SC16IS752,andSC16IS762.NXPSemiconductors……
  • 所需E币: 5
    时间: 2019-12-24 19:27
    大小: 159.74KB
    上传者: 978461154_qq
    大多数基于微处理器的系统,以确保正确的操作,需要在上电和掉电的监督,并在进入或退出关机或休眠模式。主管可能只提供了一个上电复位,或它可以提供额外的功能,如备份电池管理,存储器写保护,低线的预警,或软件看门狗(图1)。Maxim>AppNotes>AutomotiveMicroprocessorSupervisorCircuitsKeywords:microprocessorsupervisor,batterybackup,falsereset,poweronreset,powergoodcircuit,resetcircuit,earlywarning,sleepmode,uPsupervisor,Mar13,2000microprocessor,supervisory,supervisorICsAPPLICATIONNOTE655SupervisorICsMonitorBattery-PoweredEquipmentToensurecorrectoperation,mostmicroprocessor-basedsystemsrequiresupervisionduringpower-upandpower-down,andwhenenteringorexitingshutdownorsleepmode.Thesupervisormayonlyprovideapower-onreset,oritmayofferadditionalfunctions,suchasbackup-batterymanagement,memory-writeprotection,low-lineearlywarning,orasoftwarewatchdog(Figure1).Figure1.Afeature-ladenPsupervisor(IC1),withtheh……
  • 所需E币: 5
    时间: 2019-12-24 18:41
    大小: 211.1KB
    上传者: 二不过三
    摘要:DS2761和DS2762的高精度电池监视器,提供Li+电池的监测和保护。这些器件具有两种电源模式:主动和睡眠。而在主动模式下,设备不断监视系统,并提供锂离子保护。在休眠模式下,这些活动将停止。有几种情况,可以进入休眠模式主动模式过渡的设备:低DQ的电压条件下,和swap命令发出。有另一组条件,可以从睡眠模式转换到主动模式的设备:DQ的,PS的下降沿上升沿,附带一个充电器,并发出swap命令。PMOD位,斯文位,DQ引脚和电池电压作用状态,充电控制(CC)和放电控制(DC)引脚如何反应时起床。本应用笔记提供起床在所有可能的情景发生的事情的细节。Maxim/Dallas>AppNotes>BATTERYMANAGEMENTKeywords:DS2761DS2762DS2760wakingupactivemodesleepmodebatterymanagementLiIONLi+Li-May04,2004IONAPPLICATIONNOTE3225WakingupaDS2761/DS2762TheDS2761andDS2762HighPrecisionBatteryMonitorsprovidemonitoringandprotectionforaLi+cell.Thesedeviceshavetwopowermodes:ActiveandSleep.WhileinActiveMode,thedevicescontinuallymonitorthesystemandprovideLi+protection.WhileinSleepMode,theseactivitiescease.ThereareseveralconditionsthatcantransitionthedevicesfromActiveModeintoSleepMode:alowDQ,anundervoltagecondition,andtheissuingoftheSwapcommand.ThereisanothersetofconditionsthatcantransitionthedevicesfromSleepModeintoActiveMode:arisingedgeofDQ……
  • 所需E币: 3
    时间: 2019-12-24 18:42
    大小: 211.1KB
    上传者: givh79_163.com
    唤醒DS2761/DS2762Maxim/Dallas>AppNotes>BATTERYMANAGEMENTKeywords:DS2761DS2762DS2760wakingupactivemodesleepmodebatterymanagementLiIONLi+Li-May04,2004IONAPPLICATIONNOTE3225WakingupaDS2761/DS2762TheDS2761andDS2762HighPrecisionBatteryMonitorsprovidemonitoringandprotectionforaLi+cell.Thesedeviceshavetwopowermodes:ActiveandSleep.WhileinActiveMode,thedevicescontinuallymonitorthesystemandprovideLi+protection.WhileinSleepMode,theseactivitiescease.ThereareseveralconditionsthatcantransitionthedevicesfromActiveModeintoSleepMode:alowDQ,anundervoltagecondition,andtheissuingoftheSwapcommand.ThereisanothersetofconditionsthatcantransitionthedevicesfromSleepModeintoActiveMode:arisingedgeofDQ……
  • 所需E币: 3
    时间: 2019-12-29 00:06
    大小: 11.26KB
    上传者: wsu_w_hotmail.com
    将低功耗设计进行到底……