Articles Posted by the Author:

  • Vortex86EX SOM-128-EX

    SOM-128-EX 是嵌入式系统的一种子类型,可能是一种系统单晶片的扩展概念。我们特别设计这款产品是因为我们理解开发新系统过程中的挑战。 通常,针对特定应用量身定制的系统会涉及高昂的管理成本;然而,采用SOM 的方案可以让希望自订系统的消费者轻松使用已布局的I/O 和连接器引脚,无需花费数月进行设计和文书工作。这样不仅节省了时间,还降低了开发成本,促进了创新。 注記 : 此模组专用于86Duino,预装86Duino One/Zero韧体,适合高阶使用。 Feature | 特  点 ● 以太网 MAC + PHY ● SATA 接口 ● PCI-E 控制接口 ● PCI-E 目标接口 ● ADC 通道 x 8 ● USB 2.0 端口 ● DMA 控制器 ● 中断控制器 ● MTBF 计数器 ● xISA 总线接口 ● COM x 10 端口 ● GPIO x […]



  • Mini PCIe VGA Card

    Mini PCIe VGA Card

    Dedicated for 86Duino One Specifications ● Controller : Vortex86VGA ● Maximum Display Resolution : 1024×768@60Hz ● Video Memory: 4MB SRAM Caution : Required 86Duino SysImage 20141013 version or later, older version will not support. Vortex86 mini PCI-E VGA card on 86Duino One Vortex86VGA Datasheet Circuits Schematics for Mini-PCIe VGA Card Arduino is a registered trademark of […]


  • Vortex86EXm SOC-32-EXm

    Vortex86EXm SOC-32-EXm

    86Duino Vortex86EXm SOC-32-EXm ● Vortex86EXm Processor ● Open-Source Hardware ● Support DOS, Windows, Linux Arduino is a registered trademark of the Arduino Team 86Duino preload program is free software: it under the terms of the GNU General Public License and GNU Lesser General Public License. See <http://www.gnu.org/licenses/>


  • Release Note

    Release Note

    86Duino Coding 318– 2019.09.11 IDE re-ported to Arduino 1.8.9, supporting all functions of Arduino 1.8.9 Added Modbus library, supports Modbus ASCII, Modbus RTU, Modbus TCP protocol, supports Modbus Master / Slave and Gateway functions. Added Motion86 library, supports various motion control functions, up to 9-axis pulse wave output (86Duino One), can control 3 XYZ three-axis […]


  • unsigned long

    unsigned long

    unsigned long Description Unsigned long variables are extended size variables for number storage, and store 32 bits (4 bytes). Unlike standard longs unsigned longs wont store negative numbers, making their range from 0 to 4,294,967,295 (2^32 1). Example unsigned long time; void setup() { Serial.begin(9600); } void loop() { Serial.print("Time: "); time = millis(); //prints […]


  • Stream

    Stream

      Stream Stream is the base class for character and binary based streams. It is not called directly, but invoked whenever you use a function that relies on it. Stream defines the reading functions in Arduino. When using any core functionality that uses a read() or similar method, you can safely assume it calls on […]


  • Serial

    Serial

      Serial Used for communication between the Arduino board and a computer or other devices. All Arduino boards have at least one serial port (also known as a UART or USART): Serial. It communicates on digital pins 0 (RX) and 1 (TX) as well as with the computer via USB. Thus, if you use these […]


  • noInterrupts()

    noInterrupts()

      noInterrupts() Description Disables interrupts (you can re-enable them with interrupts()). Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for […]


  • interrupts()

    interrupts()

      interrupts() Description Re-enables interrupts (after theyve been disabled by noInterrupts()). Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for […]