Difference between revisions of "83Plus:Software:usb8x/Asm Interface/Silver"
From WikiTI
		
		
		
m (typo sigh)  | 
				m (Fixed links)  | 
				||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
The SilverLink driver provides support for the TI-Graphlink SilverLink cable.  This cable can be used to communicate with another calculator and to create, for example, a daisy-chain network of TI-84 Plus calculators.  | The SilverLink driver provides support for the TI-Graphlink SilverLink cable.  This cable can be used to communicate with another calculator and to create, for example, a daisy-chain network of TI-84 Plus calculators.  | ||
| − | The SilverLink driver is initialized via [[/SilverInit|SilverInit]].  This entry point initializes both the driver and the silverlink hardware, so you may want to check to see if a device is connected via [[../IsDeviceConnected|IsDeviceConnected]] first.  | + | The SilverLink driver is initialized via [[83Plus:Software:usb8x/Asm_Interface/Silver/SilverInit|SilverInit]].  This entry point initializes both the driver and the silverlink hardware, so you may want to check to see if a device is connected via [[../IsDeviceConnected|IsDeviceConnected]] first.  | 
| − | After initializing the   | + | After initializing the SilverLink, use [[83Plus:Software:usb8x/Asm_Interface/Silver/SilverSend|SilverSend]] to send data to the connected device.  Incoming data will be reported to the callback function specified during U_CALL_INIT.  | 
== Entry Points ==  | == Entry Points ==  | ||
{| border="1" cellpadding="2"  cellspacing="0"    | {| border="1" cellpadding="2"  cellspacing="0"    | ||
|-  | |-  | ||
| − | | [[/SilverInit|SilverInit]] || Initialize the SilverLink driver and hardware  | + | | [[83Plus:Software:usb8x/Asm_Interface/Silver/SilverInit|SilverInit]] || Initialize the SilverLink driver and hardware  | 
|-  | |-  | ||
| − | | [[/SilverSend|SilverSend]] || Send data via the SilverLink to the attached device  | + | | [[83Plus:Software:usb8x/Asm_Interface/Silver/SilverSend|SilverSend]] || Send data via the SilverLink to the attached device  | 
|}  | |}  | ||
Latest revision as of 06:53, 21 January 2011
The SilverLink driver provides support for the TI-Graphlink SilverLink cable. This cable can be used to communicate with another calculator and to create, for example, a daisy-chain network of TI-84 Plus calculators.
The SilverLink driver is initialized via SilverInit. This entry point initializes both the driver and the silverlink hardware, so you may want to check to see if a device is connected via [[../IsDeviceConnected|IsDeviceConnected]] first.
After initializing the SilverLink, use SilverSend to send data to the connected device. Incoming data will be reported to the callback function specified during U_CALL_INIT.
Entry Points
| SilverInit | Initialize the SilverLink driver and hardware | 
| SilverSend | Send data via the SilverLink to the attached device |