Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个每 256 个周期递增一的计时器。有没有一种方法可以让我在调用它时从 TCNT0 获取值。
我正在使用 AVR Studio 4 并尝试过使用ldi temp, TCNT0,但我似乎总是得到 32 这是它的地址。
ldi temp, TCNT0
谢谢
如果 TCNT0 在 I/O 空间内,那么您可以使用IN它来检索它的值,否则您将需要使用LDS它从其内存地址(通常从 I/O 寄存器位置偏移 0x20)加载它。
IN
LDS
in tmp,TCNT0