home *** CD-ROM | disk | FTP | other *** search
- HISTORY.CTF -- Chronology of changes to 'CommTools For FoxPro'
-
- Last updated: 19930131
-
- 01-16-92
- --------------
- CommTools has no history.
-
-
- 05-19-92
- --------------
- a) IRQs above 7 are now supported in CommTools, for those using 16-bit
- serial cards;
-
- b) IRQ lines may now be shared by more than one serial port. Usage is as
- follows. Assume we have the following lines from FOXCOM1:
-
-
- ret = u8250_init(0, COM1, 2400, 8, PARITY_NONE, 1)
- IF ret < 0
- ? ret
- QUIT
- ENDIF
- =install_ipr(0, RECEIVE, NULL, 2048) && initialize receive IPR
- =install_isr(0, 4, NULL) && IRQ4,
-
- we wish to use COM3, which we assume uses I/O address 0X3E8 and IRQ 4
- (sharing it with COM1). We could do this as follows for CommTools portid
- 1:
-
- ret = u8250_init(1, x2d("3E8"), 2400, 8, PARITY_NONE, 1)
- IF ret < 0
- ? ret
- QUIT
- ENDIF
- =install_ipr(1, RECEIVE, NULL, 2048) && initialize receive IPR
- =install_isr(1, 4, NULL) && IRQ4,
-
- CommTools chains the ISRs together.
-
-
-
- 05-21-92
- --------------
- a) You may now specify the length of a screen under terminal emulation.
- To do so, call:
-
- =term_set(portid, TERM_ROWS, <rows>)
-
- Note: a bug in FoxPro prevents scrolling of a window, other than when
- the cursor reaches the last line. This causes all lines written to the
- bottom line of <rows> (e.g. line 24 if you specify rows as 25, since
- rows are numbered from zero) to overwrite one another. The workaround is
- to specify <rows> to be equal to the interior height of the
- display window (the height excluding the border) plus one..
-
- For example usage, see FOXCOM11.
-
- Note: The VT100 defaults to a 24 line screen. If you log on to a BBS as
- an ANSI terminal this causes strange video displays when the BBS
- explicitly tries to move the cursor to line 25. The solution is to call
- term_set() to set the number of rows to 25;
-
-
- b) Fixed a bug in CAS routines that prevented CommTools from opening and
- using the CAS log.
-
-
- c) Other term_set() options:
- set the number of columns use by a terminal emulator:
- =term_set(portid, TERM_COLS, <cols>)
-
- Turn a key click ON or OFF under terminal emulation:
- =term_set(portid, TERM_KEYCLICK, <ON|OFF>)
-
-
- 06-21-92
- ---------------
-
- a) A new file transfer status routine report has been added.
- "CONNECTION_LOST" is returned when carrier is lost during file transfer.
- See the sample transfer status routine XFER_PROGRESS in CTFUTIL.PRG.
-
- b) The function x2d() converts a hexadecimal value expressed as a string
- to a decimal value. This is useful when passing parameters that are
- conventionally expressed in hexadecimal notation (e.g. COM1 is expressed
- as 3F8h, rather than 1016 decimal).
- Prototype:
- expN x2d(expC <parm>)
- Usage example:
- Type the following in the FoxPro command window:
-
- SET LIBRARY TO ctf
- ? x2d("3f8")
-
- The number "1016" should appear in the active window.
-
- Note: their must not be any characters that are not part of the hex.
- character set in <parm>.
-
- c) Fax Developers: A new function cas_close() closes files opened with
- cas_open(). Prototype:
- expN cas_close(expN file_handle)
-
- Returns 0 on success, negative value on error;
-
- d) New function: Make terminal revert to TTY and free memory allocated
- for an emulated terminal.
- Prototype:
- term_deinit(expn <portnum>)
- Returns:
- 0 on success;
- EOF if no special terminal allocated to this port;
-
- Usage Notes: This function is called automatically when you unload the
- CommTools library. Optionally, call it earlier if you have used a
- terminal emulation, revert to TTY, and want to conserve memory usage.
-
- e) New manifest constants:
- DigiBoard COM/Xi functions:
- The return code from comxi_init() is:
- 0 -- success;
- -2 -- invalid board number or timeout error during
- initialization;
- NO_RAM -- insufficient memory for data structures;
- or FEP busy (0h not written to "mailbox");
- -4 -- Module not loaded;
- -8 -- Bad ROM version
- PARMERROR -- Incorrect number or type of parameters;
-
- The return code from comxi_i_channel() is:
- 0 -- success;
- NO_RAM -- unable to allocate memory for COMM_PORT;
- -2 -- COM/Xi card not initialized;
- -3 -- invalid COM/Xi board number;
- NO_PORT -- invalid COM/Xi channel number;
- PARMERROR -- Incorrect number or type of parameters;
-
- The return code from comxi_deinit() is:
- 0 -- success;
- EOF -- Port already deinitialized;
- -2 -- invalid board number;
-
- f) MODEM_ICMD() is renamed MODEM_CMD();
-
-
- 07-30-92
- ---------------
-
- a) Fixed bugs in Kermit and ZMODEM;
-
- b) cas_get_hardware() was returning -2. Fixed. It now returns 0 on
- success. In addition, a new error return code is added.
-
- NO_RAM => inadequate memory to allocate buffer to return information
- from CAS device;
-
- c) All fax functions are now in a separate library: FTF.PLB ("FaxTools
- for FoxPro"). This allows you to load only the serial or fax functions,
- as you wish, reducing memory requirements in most environments.
-
- To load both libraries, use:
-
- SET LIBRARY TO <libname> ADDITIVE
-
-
- 08-06-92
- ---------------
-
- a) isacas() is renamed cas_exist() (the old name still works);
-
- b) True colors are now available under terminal emulation. ANSI.SYS is
- especially noteworthy. See FOXCOM11 for a demonstration.
-
-
- 09-07-92
- ---------------
-
- a) Fixed bug in CAS_SET_DATE_EVENT(). It was not setting the date;
-
- b) Fixed bugs in file transfer protocols that caused a hang at the end;
-
- c) The Star Gate ACL 16 and ACL 16+ intelligent multiport boards are now
- supported;
-
-
- 09-13-92
- ---------------
-
- a) Fixed bug in fqueue() that had crept in from a previous fix and
- prevented files being sent;
-
- b) Fixed bug in CAS fax routines that caused "Use of Transgressed
- Handles";
-
-
- 09-20-92
- ---------------
-
- a) K_SET() can now set parameters individually for each port. This
- requires a change in its parameters.
- Viz:
-
- expN K_SET(expN portid, expN parm, expN value)
-
- where
- expN portid is the port number to which the Kermit parameters apply;
- expN parm is the parameter to set;
- expN value is the value to use for 'parm';
-
- Likewise, K_GET() takes a portid:
-
- expN K_GET(expN portid, expN parm)
-
- where
- expN portid is the port number to which the Kermit parameters apply;
- expN parm is the parameter to set;
-
- b) K_INIT() is no longer needed. Its functions are performed by K_SET();
-
- c) Fixed bug in Kermit file send that caused a hang at the end or if the
- abort key was pressed;
-
-
- 09-30-92
- ---------------
-
- a) Fixed some bugs in X/Ymodem transfers that resulted in incorrect
- return codes being returned;
-
-
- 10-03-92
- ---------------
-
- a) Fixed some bugs in Kermit transfers that resulted in incorrect
- return codes being returned;
-
-
- 10-04-92
- ---------------
-
- a) New function added:
- CT_GET_VERSION()
-
- Returns CommTools version number.
-
- Usage:
-
- ? ct_get_ver()
-
- "CommTools/Fox 10-04-92"
-
-
- 10-08-92
- ---------------
-
- a) Corrected unitialized variable problem in MODEM_...() functions;
-
- b) Corrected problem of CAS_CREATE_TASK() assuming that date format was
- 'AMERICAN';
-
- c) See $README.CTF for new usage notes on DOSD2XD();
-
-
- 11-28-92
- ---------------
-
- a) Corrected various problems with file tranfer, mainly involving return
- codes;
-
-
- 12-06-92
- ---------------
-
- a) Corrected various problems with file tranfer, mainly involving return
- codes;
-
- b) Added new file transfer status reporting to CTFUTIL.PRG
-
-
- 12-22-92
- ---------------
-
- a) Corrected a bug in CAS routines that prevented the reading of the CAS
- log;
-
-
- 12-27-92
- ---------------
-
- a) The unimplemented 'echos' discussed in earlier copies of the
- $README.CTF file are now implemented. There is some commented out code
- in FOXCOM11.PRG that shows how to use them. A new constant FILE_ECHO
- has been created to replace CAPTURE_BUFFER_ECHO. The constant
- CAPTURE_BUFFER_ECHO is retained for backward compatibility. We
- RECOMMEND that you use FILE_ECHO for future compatibility, The supported
- echoes are:
-
- SET_RX_XLAT(<portid>, CAPTURE_BUFFER_ECHO, <fn>)
- SET_RX_XLAT(<portid>, FILE_ECHO, <fn>)
- SET_RX_XLAT(<portid>, PRINTER_ECHO, <fn>)
-
- SET_TX_XLAT(<portid>, CAPTURE_BUFFER_ECHO, <fn>)
- SET_TX_XLAT(<portid>, FILE_ECHO, <fn>)
- SET_TX_XLAT(<portid>, PRINTER_ECHO, <fn>)
-
-
- 12-29-92
- ---------------
-
- a) ZMODEM: A file 'send' terminated immediately at >= 38,400bps. Fixed;
-
- b) IRQ Sharing: Most PC hardware cannot share an IRQ line between two
- ACTIVE devices (this does not apply to the Microchannel and EISA
- busses). CommTools now tests the hardware to see if it supports
- interrupt sharing if you try an install two (or more) devices on the
- same IRQ line. If the hardware does not support interrupt sharing, a
- warning message pops up. To see this, run CT2ISR.PRG;
-
- c) Fax: Cover page messages were limited to 128 bytes due to the design
- of the CommTools API. This restriction is now REMOVED. Cover page
- messages may now be any length (however, the CAS spec. recommends a
- maximum of 36 lines);
-
-
- 01-09-93
- ---------------
-
- a) Fixed bug in file transfers under terminal emulation;
-
-
- 01-16-93
- ---------------
-
- a) DigiBoard DigiCHANNEL COM/Xi: Fixed bug that prevented the use of
- even parity;
-
- b) DigiBoard DigiCHANNEL Boards: CommTools now supports the following
- DigiBoard intelligent boards:
- DigiBoard DigiCHANNEL COM/Xi
- DigiBoard DigiCHANNEL MC/Xi
- DigiBoard DigiCHANNEL PC/Xe
- DigiBoard DigiCHANNEL PC/Xi
-
- Previously, the only intelligent DigiBoard supported was the DigiBoard
- DigiCHANNEL COM/Xi.
-
- The new support is via the DigiBoard "Universal DOS Driver" supplied
- with the board. See CTFX00.PRG for an example and usage instructions.
-
- The original method of addressing the COM/Xi (direct board access) is
- still available and has certain advantages (e.g. higher speeds on each
- port).
-
- 01-31-93
- ---------------
-
- a) Support added for Foxpro for DOS v2.5
-
- 02-11-93
- ---------------
-
- a) Support added for FoxPro for DOS v2.5.
- CTF.PLB is now:
- CTF20.PLB for FoxPro v2.0
- CTF25.PLB for FoxPro for DOS v2.5
-
- b) Some internal changes to improve the error handling of streaming
- protocols when transmit interrupts are in use;
-
- 05-06-93
- ---------------
-
- a) Fixed some file transfer problems under FoxPro 2.5
-
-
-