Difference between revisions of "83Plus:Software:usb8x/BASIC Interface"

From WikiTI
Jump to: navigation, search
(Available Functions: reorder and add kbd)
m (HostInit added)
Line 18: Line 18:
 
|-
 
|-
 
|[[/GetIDs|GetIDs]] || Gets product and vendor IDs from device
 
|[[/GetIDs|GetIDs]] || Gets product and vendor IDs from device
 +
|-
 +
|[[/HostInit|HostInit]] || Initialize USB device only (for power-only devices)
 
|-
 
|-
 
|[[/ImportVariable|ImportVariable]] || Import 8x* file in specified directory from connected USB flash drive as calculator variable in RAM/Flash
 
|[[/ImportVariable|ImportVariable]] || Import 8x* file in specified directory from connected USB flash drive as calculator variable in RAM/Flash

Revision as of 04:05, 7 January 2007

The OpenLib( and ExecLib commands can be used to access usb8x functions from BASIC programs. Input and output is passed through a list in the Ans variable. On input, the first element of the list holds the function number of the command to execute and the remaining elements hold input values. On output, the first element holds the success/error status (where 0 is success) and the remaining elements may hold output data values. See the information page on individual functions to determine its function number and input/output values.

Note: Versions of usb8x prior to 0.10 require that the input list be seven elements long. Elements that are not part of the defined input are ignored.

Example code to quit unless a USB device is connected:

OpenLib(USBDRV8X
{0
ExecLib
If not(Ans(2
Return

Available Functions

ExportVariable Export calculator variable in RAM/Flash to connected USB flash drive in specified directory as 8x* file
GetClass Gets class, subclass, and protocol information from device
GetIDs Gets product and vendor IDs from device
HostInit Initialize USB device only (for power-only devices)
ImportVariable Import 8x* file in specified directory from connected USB flash drive as calculator variable in RAM/Flash
IsDeviceConnected Checks if a device is connected
KBDGetKey Get a key press from the keyboard
KBDInit Initialize the keyboard driver
KillUSB Uninitializes both USB device and usb8x driver
MouseDo Get mouse movement/button information
MouseInit Initializes mouse driver
MSDInit Initialize USB mass storage driver
Version Gets usb8x version information