Serial IO 0.9 beta (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Serial IO 0.9 beta (Default branch)
# 1  
Old 07-13-2008
Serial IO 0.9 beta (Default branch)

ImageSerial-IO is a simple program to send and receivedata from a serial interface. The GUI is designedlike a chat window with a transmitter/receiverfield and a command line to send characters andinteger values.License: GNU General Public License v2Changes:
This version introduces "Dialogs". The content(variables) of the dialogs can be configured bythe user. This version also fixes the color bug(occurring using Qt 4.4).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Blt_TreeGetNode(3)					      BLT Library Procedures						Blt_TreeGetNode(3)

__________________________________________________________________________________________________________________________________________________

NAME
Blt_TreeGetNode - Finds the node from the ID. SYNOPSIS
#include <bltTree.h> Blt_TreeNode Blt_TreeGetNode(tree, number) ARGUMENTS
Blt_Tree tree (in) Tree containing the requested node. unsigned int number (in) Serial number of the requested node. _________________________________________________________________ DESCRIPTION
This procedure returns a node in a tree object based upon a give serial number. The node is searched using the serial number. The arguments are as follows: tree The tree containing the requested node. number The serial number of the requested node. RETURNS
The node represented by the given serial number is returned. If no node with that ID exists in tree then NULL is returned. EXAMPLE
The following example gets the node from a serial number. unsigned int number; Blt_TreeNode node; Blt_TreeToken token; node = Blt_TreeGetNode(token, number); if (node == NULL) { printf("no node with ID %d exists ", number); } else { printf("node found: label is %s ", Blt_TreeNodeLabel(node)); } KEYWORDS
Tcl_TreeCreateNode, Tcl_TreeDeleteNode BLT
2.4 Blt_TreeGetNode(3)