Articles Posted by the Author:

  • Vortex86EX SOM-128-EX

    SOM-128-EX は組み込みシステムのサブタイプであり、システム オン チップの拡張コンセプトである可能性が高いです。当社がこれを特別に設計した理由は、新しいシステムの開発の難しさを理解しているからです。 通常、特別なアプリケーション向けにカスタマイズされたシステムには、高いオーバーヘッド コストがかかります。しかし、SOM を採用すれば、カスタマイズされたシステムを求める消費者向けに、すでにレイアウトされている I/O およびコネクタのピンを簡単に実装でき、設計や書類作成に何ヶ月も費やす必要はありません。 注記 : このモジュールは 86Duino 専用で、86Duino One/Zero ファームウェアがプリロードされており、高度な使用に適しています。 Feature | 特   徴 ● Vortex86EX- 300MHz ● オンボード 128MB 産業グレード DDR ● オンボード 8MB SPI フラッシュ ディスク ● Ethernet MAC + PHY ● SATA インターフェイス ● PCI-E コントロール インターフェイス ● PCI-E ターゲット インターフェイス ● ADC チャネル x 8 […]



  • Mini PCIe VGA Card

    Mini PCIe VGA Card

      Specifications | 仕様 専用の 86Duino One ● コントローラ : Vortex86VGA ● 最大表示解像度 : 1024×768@60Hz ●ビデオメモリ : 4MB SRAM 警告 : 86Duino SysImage 20141013以上のバージョンが必要です。古いバージョンはサポートされません。 86Duino One用のVortex86 Mini PCI-E VGAボード   Vortex86VGA Datasheet Circuits Schematics for Mini-PCIe VGA Card Arduinoは、Arduinoチームの登録商標です 86Duino Preloaderはフリーソフトウェアです。GNU一般公開ライセンスとGNU小規模な公開ライセンスの条件に準拠しています。 <https://www.gnu.org/licenses/>を参照してください


  • Vortex86EXm SOC-32-EXm

    Vortex86EXm SOC-32-EXm

    ● Vortex86EXm プロセッサ ● 開源硬體 ●DOS、Windows、Linuxをサポート Arduinoは、Arduinoチームの登録商標です 86Duinoプリインストールプログラムはフリーソフトウェアです。GNU一般公開ライセンスとGNU小規模の一般公開ライセンスの条件に準拠しています。 <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 won’t 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(); […]


  • 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 they’ve 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 […]