This application note provides information showing how to use 86UsbSh to enable connectivity between a PC and 86Duino using an USB-to-MicroUSB adapter, interacting with DuinOS using DOS command. 1. 86UsbSh Introduction 86UsbSh is an USB DOS shell application designed specifically for the 86Duino platform to remotely execute DOS command via a client PC connecting to […]
This document provides information showing how to install DuinOS using a Windows based PC. For more information about DuinOS and its usage, refer to the here. Requirements A blank MicroSD storage card (1 GB or larger). An USB to MicroSD adapter Step 1 Download the latest DuinOS and unzip to c:\ drive on your PC. […]
This document provides information showing how to install DuinOS using a Linux based PC. For more information about DuinOS and its usage, refer to here. Requirements A blank MicroSD storage card (1 GB or larger) An USB to MicroSD adapter Step 1 Download the latest DuinOS and unzip to the /tmp folder on your PC. […]
This document provides information showing how to install DuinOS using Mac OS X. For more information about DuinOS and its usage, refer to the here. Requirements A blank MicroSD storage card (1 GB or larger) An USB to MicroSD adapter Step 1 Download the latest DuinOS and unzip to the root folder. The unzipped DuinOS.img […]
1. DuinOS Introduction DuinOS is a customized DOS operating system for 86Duino devices, an advanced environment to support DOS application. Derived from FreeDOS, DuinOS includes all FreeDOS components and tools. In addition, DuinOS also included application development environment to compile and debug application codes. To support 86Duino Zero/EduCake without VGA display, the DuinOS environment includes […]
This document provides information showing how to install DuinOS using a Windows based PC. For more information about DuinOS and its usage, refer to the here. Requirements A blank MicroSD storage card (1 GB or larger) An USB to MicroSD adapter Step 1 Download the latest DuinOS and unzip to a local folder on your […]
Sorry, this entry is only available in 繁體中文.
Description Unsigned long-long variables are extended size variables for number storage, and store 64 bits (8 bytes). Unlike standard long-longs, unsigned long-longs won’t store negative numbers, making their range from 0 to 18,446,744,073,709,551,615 (2^64 – 1). If doing math with integers, at least one of the numbers must be followed by an ULL, forcing it […]
Description Long-long variables are extended size variables for number storage, and store 64 bits (8 bytes), from –9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. If doing math with integers, at least one of the numbers must be followed by an LL, forcing it to be a long long. Example long long speedOfRobot = 186000000LL; Syntax long long var = […]
Sorry, this entry is only available in 繁體中文.