[DemoCode下载] ACMP窗口锁存模式应用

[复制链接]
850|11
 楼主| 天灵灵地灵灵 发表于 2020-7-4 22:43 | 显示全部楼层 |阅读模式
ACM, ge, se, ic
  1. /**************************************************************************//**
  2. * [url=home.php?mod=space&uid=288409]@file[/url]     main.c
  3. * [url=home.php?mod=space&uid=895143]@version[/url]  V1.00
  4. * [url=home.php?mod=space&uid=247401]@brief[/url]    Demonstrate how to use ACMP window latch mode.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. * [url=home.php?mod=space&uid=17282]@CopyRight[/url] (C) 2018 Nuvoton Technology Corp. All rights reserved.
  8. *****************************************************************************/
  9. #include <stdio.h>
  10. #include "NuMicro.h"


  11. void ACMP01_IRQHandler(void)
  12. {
  13.     static uint32_t u32Cnt = 0;

  14.     /* Clear ACMP 1 interrupt flag */
  15.     ACMP_CLR_INT_FLAG(ACMP01, 1);
  16.     /* Check Comparator 1 Output Status */
  17.     if(ACMP_GET_OUTPUT(ACMP01, 1))
  18.         printf("ACMP1_P voltage > Band-gap voltage (%d)\n", u32Cnt);
  19.     else
  20.         printf("ACMP1_P voltage <= Band-gap voltage (%d)\n", u32Cnt);

  21.     u32Cnt++;
  22. }


  23. void SYS_Init(void)
  24. {
  25.     /* Unlock protected registers */
  26.     SYS_UnlockReg();

  27.     /* Enable HIRC */
  28.     CLK_EnableXtalRC(CLK_PWRCTL_HIRCEN_Msk);

  29.     /* Waiting for HIRC clock ready */
  30.     CLK_WaitClockReady(CLK_STATUS_HIRCSTB_Msk);

  31.     /* Switch HCLK clock source to HIRC */
  32.     CLK_SetHCLK(CLK_CLKSEL0_HCLKSEL_HIRC, CLK_CLKDIV0_HCLK(1));

  33.     /* Set both PCLK0 and PCLK1 as HCLK/2 */
  34.     CLK->PCLKDIV = (CLK_PCLKDIV_APB0DIV_DIV2 | CLK_PCLKDIV_APB1DIV_DIV2);

  35.     /* Switch UART0 clock source to HIRC */
  36.     CLK_SetModuleClock(UART0_MODULE, CLK_CLKSEL1_UART0SEL_HIRC, CLK_CLKDIV0_UART0(1));

  37.     /* Enable UART peripheral clock */
  38.     CLK_EnableModuleClock(UART0_MODULE);

  39.     /* Enable ACMP01 peripheral clock */
  40.     CLK_EnableModuleClock(ACMP01_MODULE);

  41.     /* Update System Core Clock */
  42.     /* User can use SystemCoreClockUpdate() to calculate PllClock, SystemCoreClock and CycylesPerUs automatically. */
  43.     SystemCoreClockUpdate();

  44.     /*----------------------------------------------------------------------*/
  45.     /* Init I/O Multi-function                                              */
  46.     /*----------------------------------------------------------------------*/
  47.     /* Set GPB multi-function pins for UART0 RXD and TXD */
  48.     SYS->GPB_MFPH = (SYS->GPB_MFPH & ~(SYS_GPB_MFPH_PB12MFP_Msk | SYS_GPB_MFPH_PB13MFP_Msk)) |
  49.                     (SYS_GPB_MFPH_PB12MFP_UART0_RXD | SYS_GPB_MFPH_PB13MFP_UART0_TXD);

  50.     /* Set PB4 multi-function pin for ACMP1 positive input pin and PB6 multi-function pin for ACMP1 output pin */
  51.     SYS->GPB_MFPL = (SYS->GPB_MFPL & ~(SYS_GPB_MFPL_PB4MFP_Msk | GPIO_MODE_MODE6_Msk)) |
  52.                     (SYS_GPB_MFPL_PB4MFP_ACMP1_P1 | SYS_GPB_MFPL_PB6MFP_ACMP1_O);
  53.     /* Disable digital input path of analog pin ACMP1_P1 to prevent leakage */
  54.     GPIO_DISABLE_DIGITAL_PATH(PB, BIT4);
  55.     /* Set PB.4 to input mode for ACMP analog input pins */
  56.     GPIO_SetMode(PB, BIT4, GPIO_MODE_INPUT);

  57.     /* Set PA.6 multi-function pin for ACMP1 window latch pin */
  58.     SYS->GPA_MFPL = (SYS->GPA_MFPL & ~(SYS_GPA_MFPL_PA6MFP_Msk)) |
  59.                     (SYS_GPA_MFPL_PA6MFP_ACMP1_WLAT);

  60.     /* Lock protected registers */
  61.     SYS_LockReg();
  62. }


  63. /*----------------------------------------------------------------------*/
  64. /* Init UART0                                                           */
  65. /*----------------------------------------------------------------------*/
  66. void UART0_Init(void)
  67. {
  68.     /* Reset UART0 */
  69.     SYS_ResetModule(UART0_RST);

  70.     /* Configure UART0 and set UART0 baud rate */
  71.     UART_Open(UART0, 115200);
  72. }


  73. /*
  74. * In window latch mode and window latch pin is at high level, the voltage of the positive
  75. * input is greater than the  voltage of the negative input, the analog comparator outputs
  76. * logical one; otherwise, it outputs logical zero. When window latch pin is at low level,
  77. * the output level does not change no matter how positive  input voltage changes.
  78. */

  79. int32_t main(void)
  80. {
  81.     /* Init System, IP clock and multi-function I/O. */
  82.     SYS_Init();

  83.     /* Init UART0 for printf */
  84.     UART0_Init();

  85.     printf("\nThis sample code demonstrates ACMP1 window latch function. Using ACMP1_P1 (PB4) as ACMP1\n");
  86.     printf("positive input and using internal band-gap voltage as the negative input. ACMP1_WLAT is at\n");
  87.     printf("PA6, when PA6 is low, compare result on ACMP1_O (PB6) does not change with ACMP1_P1. When PA6\n");
  88.     printf("is high, ACMP1_O works as usual\n");

  89.     printf("Press any key to start ...");
  90.     getchar();
  91.     printf("\n");

  92.     /* Configure ACMP1. Enable ACMP1 and select band-gap voltage as the source of ACMP negative input. */
  93.     ACMP_Open(ACMP01, 1, ACMP_CTL_NEGSEL_VBG, ACMP_CTL_HYSTERESIS_DISABLE);
  94.     /* Select P1 as ACMP positive input channel */
  95.     ACMP_SELECT_P(ACMP01, 1, ACMP_CTL_POSSEL_P1);
  96.     /* Enable interrupt */
  97.     ACMP_ENABLE_INT(ACMP01, 1);
  98.     /* Enable window latch mode */
  99.     ACMP_ENABLE_WINDOW_LATCH(ACMP01, 1);

  100.     /* Enable ACMP01 interrupt */
  101.     NVIC_EnableIRQ(ACMP01_IRQn);

  102.     while(1);
  103. }


 楼主| 天灵灵地灵灵 发表于 2020-7-4 22:43 | 显示全部楼层
窗口锁存模式
展示了比较器在窗口锁存模式的操作。通过置WLATEN (ACMP_CTL0/1[17])为1使能窗口锁存模式。当窗口锁存模式使能, ACMP0/1_WLAT 管脚被用于控制 WLATOUT0/1 输出。当
ACMP0/1_WLAT为高,ACMPO0/1会输出到WLATOUT0/1。当ACMP0/1_WLAT为低,WLATOUT0/1将保持WLATOUT0/1上一个状态。
984435f00959d7c3cc.png
jiekou001 发表于 2020-7-5 22:52 | 显示全部楼层
不懂这个到底是什么功能。
huangcunxiake 发表于 2020-7-6 17:58 | 显示全部楼层
我也不理解这个概念。
antusheng 发表于 2020-7-7 19:49 | 显示全部楼层
要搞清楚这个模式是啥用处。
huahuagg 发表于 2020-7-7 20:45 | 显示全部楼层
天灵灵地灵灵 发表于 2020-7-4 22:43
窗口锁存模式
展示了比较器在窗口锁存模式的操作。通过置WLATEN (ACMP_CTL0/1[17])为1使能窗口锁存模式。当 ...

看懂了,有个使能
还有两个电极的比较
还有一个相当于保持锁存的控制
当锁存打开就会把比较结果输出,如果关闭,就保持之前的输出。。。
huahuagg 发表于 2020-7-7 20:57 | 显示全部楼层
大家觉得我说的对吗
coshi 发表于 2020-8-3 17:36 | 显示全部楼层
非常感谢楼主分享
aoyi 发表于 2020-8-3 17:36 | 显示全部楼层
代码非常好
drer 发表于 2020-8-3 17:36 | 显示全部楼层
正好可以参考 一下
gwsan 发表于 2020-8-3 17:37 | 显示全部楼层
楼主辛苦了
kxsi 发表于 2020-8-3 17:37 | 显示全部楼层
学习了 呵呵
您需要登录后才可以回帖 登录 | 注册

本版积分规则

183

主题

3475

帖子

13

粉丝
快速回复 在线客服 返回列表 返回顶部