bitter 发表于 2023-4-21 21:32

【英飞凌PSOC 62S4 PIONEER KIT 测评】——COMP

<div class='showpostmsg'> 本帖最后由 bitter 于 2023-4-21 21:35 编辑

<p><b>【</b><b>英飞凌PSOC 62S4 PIONEER KIT</b><b>&nbsp;测评】&mdash;&mdash;COMP</b></p>

<ul>
        <li>基本介绍</li>
</ul>

<p>根据手册,PSOC 62S4 PIONEER KIT拥有两个可以在所用功率模式下都可以使用的低功耗比较器(LP Comparator),这允许了在系统深度睡眠和休眠模式期间,当其他模拟系统资源被禁用,拥有监测外部电压水平的能力。</p>

<p>二、主要API介绍</p>

<p>1.COMP初始化cyhal_comp_init()</p>

<p align="center"> &nbsp;</p>

<p>其中,cyhal_comp_config_t结构体为</p>

<p> &nbsp;</p>

<ol start="2">
        <li>COMP配置cyhal_comp_configure()</li>
</ol>

<p align="center"> &nbsp;</p>

<p>注意:调用该函数将保留比较器的通电状态。</p>

<ol start="3">
        <li>COMP事件使能cyhal_comp_enable_event()</li>
</ol>

<p align="center"> &nbsp;</p>

<p>其中,cyhal_comp_config_t枚举为</p>

<p align="center"> &nbsp;</p>

<p>三、COMP简易程序</p>

<p>功能描述:将比较器的结果输出,1为非反相引脚电压大于反相引脚电压,否则为0。</p>

<p>代码描述:</p>

<p>1.初始化COMP,配置非反向引脚为P6_2,非反向引脚为P6_3,功率等级为高,不使用迟滞</p>

<p>&nbsp;PS:</p>

<p>1.不知道支不支持滤波</p>

<p>9e95fa48ea22c5c133ff51c1f2608c89<br />
&nbsp;</p>
</div><script>                                        var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;"   style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
                                       
                                        if(parseInt(discuz_uid)==0){
                                                                                                (function($){
                                                        var postHeight = getTextHeight(400);
                                                        $(".showpostmsg").html($(".showpostmsg").html());
                                                        $(".showpostmsg").after(loginstr);
                                                        $(".showpostmsg").css({height:postHeight,overflow:"hidden"});
                                                })(jQuery);
                                        }                </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script>

lugl4313820 发表于 2023-4-22 06:05

<p>根据手册,PSOC 62S4 PIONEER KIT拥有两个可以在所用功率模式下都可以使用的低功耗比较器(LP Comparator),这允许了在系统深度睡眠和休眠模式期间,当其他模拟系统资源被禁用,拥有监测外部电压水平的能力。</p>

<p>可经用比较结果产生唤醒中断吗?</p>

led2015 发表于 2023-4-22 20:26

<p>一般说是在功率模式下产生唤醒中断从而使系统从睡眠或休眠模式中恢复</p>

Jacktang 发表于 2023-4-22 21:15

<p>看到有COMP简易程序这个就容易理解了</p>
页: [1]
查看完整版本: 【英飞凌PSOC 62S4 PIONEER KIT 测评】——COMP