189
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
targets on his network.
To access the dialog in stand-alone mode, run em202upgr.vbs.
If You Cannot See Your Target
There can be several possible causes why you cannot see your target. Two of the
most common ones are:
1) The target is not connected to the same subnet as the computer. I.e,
there is a router between the computer and the DS. To fix this: Connect the DS to
the same hub as the computer.
2) There is a local firewall installed on the computer. Local firewalls usually
block broadcast UDP datagrams, which are used to communicate with the target.
To fix this: Configure the firewall to allow TIDE to send broadcast UDP datagrams.
Of course, once you upload a device with the TiOS firmware, it is no
longer a Device Server! So you cannot see it under DS Manager. You
could program it so it would respond to DS Manager -- but by default it
is a 'clean slate', and does not respond to DS Manager broadcasts.
Function Reference
Function reference section is a repository for all functions (syscalls) that have ever
been created. The platform you are working with does not necessarily support
every function. See your
- you will find the list of support
functions there.
Asc Function
Function:
Returns the ASCII code of the leftmost character of the
string.
Syntax:
asc(byref sourcestr as string) as byte
See Also:
Part
Description
sourcestr
Input string; the function will return ASCII code of the
leftmost character of this string.
Details
---
Examples
x = asc(
"123"
)
' result will be 49 (ASCII code of '1')
133
191