Dallas Semiconductor高速微控制器系列允许系统设计人员通过内部UART优化串行通信。本应用笔记演示了如何利用这些增强型8051微控制器中的双数据指针使用循环缓冲器。提供的示例汇编代码用于显示简单的 256 字节串行端口循环缓冲区的实现。
2023-02-21 16:06
在8051体系中,数据指针DPTR作为一个特殊的16位寄存器,用于寻址64 KB的XDATA或CODE空间,通常它被当作一个16位指针,指向一个常数表。双数据
2010-07-20 17:36
Abstract: The MAXQ-based microcontroller uses data pointers to read and write to SRAM. This application note describes how to move data from program memory to the SRAM, and how to access the data from SRAM using the data pointers.
2009-04-23 17:19
在8051体系中,数据指针DPTR作为一个特殊的16位寄存器,用于寻址64 KB的XDATA或CODE空间,通常它被当作一个16位指针,指向一个常数表。双数据
2020-09-19 16:47
利用Maxim高速微控制器系列中的数据指针递减功能,可以简化存储器管理。本应用笔记探讨了该系列微控制器在DS80C400、DS5250、DS89C430和其他产品中使用MOVX操作。示例代码在执行内存传输操作时突出显示 DPTR。
2023-02-20 09:27
利用Maxim高速微控制器系列中的数据指针递减功能,可以简化存储器管理。本应用笔记探讨了该系列微控制器在DS80C400、DS5250、DS89C430和其他产品中使用MOVX操作。 示例代码在执行内存传输操作时突出显示 DPTR。
2023-06-13 16:33
Abstract: The Dallas Semiconductor high-speed microcontroller family allows the system designer to optimize serial communications via the internal UART. This application note demonstrates the use of a circular buffer utilizing the dual dat
2009-04-23 14:59
首先,你要明白一个概念,指针,是做什么的?答案是,指针,是指向地址的。程序指针,指向的空间,在物理上是Flash,在逻辑上,就是代码空间。比如说51单片机的PC指针,指
2017-11-10 11:21
Abstract: Memory management can be simplified by using the data pointer decrement feature found in the Dallas Semiconductor high-speed microcontroller family. This application note explores the use of MOVX operations in the DS80C400, DS525
2009-04-23 14:55
定义含 义 int i;定义整型变量i int *pp为指向整型数据的指针变量 int a[n];定义整型数组a,它有n个元素 int *p[n];定义指针数组p,它由n个指向整型
2018-05-22 07:28