本文介绍了为什么 VirtualWire 与 Arduino/ATmega328 pin D10 中的 PWM 信号冲突?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在调试我用类似 Arduino 的板和 ATmega328 制作的硬件原型后,我注意到 RF 库 VirtualWire 禁用引脚 D10 中的 PWM 信号.这是为什么?

After debugging a hardware prototype I'm making with an Arduino-like board and ATmega328, I noticed that the RF library VirtualWire disables PWM signal in pin D10. Why is that?

如果我注释掉下面的代码,引脚 D10 上的模拟写入 (PWM) 将再次起作用:

If I comment out the bit of code below, analogWrite (PWM) on pin D10 works again:

setup() {
  ...
  vw_set_rx_pin(2);
  vw_setup(2000);    // Bits per sec
  vw_rx_start();       // Start the receiver PLL running

  analogWrite(10, 180);
  ...
}

推荐答案

VirtualWire 通过 OCR1A 在定时器 1 上使用 CTC,这既完全禁用了 OC1A(在 D9 上)和 OC1B(在 D10 上)的 PWM 操作,也阻止了 OC1A 自由操作.OC1B 仍然可用,但只能在 CTC 规定的模式下以 VirtualWire 编程到计时器中的速率使用.

VirtualWire uses CTC on timer 1 via OCR1A, which both completely disables PWM operation for OC1A (on D9) and OC1B (on D10) and prevents OC1A from operating freely. OC1B is still usable, but only in the modes prescribed by CTC at the rate programmed into the timer by VirtualWire.

这篇关于为什么 VirtualWire 与 Arduino/ATmega328 pin D10 中的 PWM 信号冲突?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 19:49