RELEASE.TXT Driver File Contents (a2-3dev_02.zip)

/******************************************************************************
 *                                                                            *
 *  RELEASE.TXT                                                               *
 *                                                                            *
 *  Relase Notes:                                                             *
 *                                                                            *
 *  V3.46 14.06.04 Handset Power with SetAux()                                *
 *      Output content now saved in global variable                           *
 *  V3.45 fixed RS485 direction bug                                           *
 *      fixed: buzzer pin set to output high                                  *
 *  V3.44 SetAux() and GetAux() for A3D-3                                     *
 *      fixed timeout/int problem in write_com                                *
 *      fixed RTC data problem, changed initialisation after boot             *
 *      i2c_write(),i2c_read() with disabled INT                              *
 *      bugfixes SetAux(),GetAux(), Mute signal initialisation after boot     *
 *  V3.42 FIFO for 16752 enabled, communication bugs fixed                    *
 *	    SERIAL.C Loop inserted in IrqUartNs450Entry()                     *
 *	    Interrupts disabled and old value restored in most functions      *
 *	    write_com() waiting loop for empty send hold register changed     *
 *  V3.41 GENIOCOM special edition changed PIO INIT in startup.asm            *
 *      timeout for coninput using the "BOOT_TIMEOUT" parameter               *
 *      fixed i2c speed for rtc                                               *
 *      fixed wrong hardware access in GetAux()                               *
 *      timeout for power down and forced reset                               *
 *  V3.40 22.01.00 - cleanup & bugfixes                                       *
 *      Speed improvments eeprom access                                       *
 *	gettimeofday() function with ms base                                  *
 *      timeout for serial functions changed to ms base                       *
 *  V3.39 14.11.00 - adaption for A2D-3rev6                                   *
 *      SetAux() and GetAux() for the pcb revision A2D-3rev6                  *
 *      speed improvments of the serial functions                             *
 *      fix LINE_DSR setup, speed autobaud detection and setting              *
 *  V3.38 11.08.00 - facelift environment functions                           *
 *      fix software handshake, compile option default com port               *
 *      changed environment structs, CRC8 checksum method,                    *
 *      MAGIC header search, remove using i2c_move commands                   *
 *      and cleanup mode during boot                                          *
 *      monitor quickstart mode                                               *
 *  V3.37 06.04.00 - time/date functions                                      *
 *      fix jear counter addjustment on leap jears                            *
 *      fix hang problem during com port initialisation                       *
 *  V3.36 17.12.99 - flash base setting on write to flash command             *
 *      fix 29LV800/400 flash boot sector address                             *
 *  V3.36 16.09.99 - minor bugfixes                                           *
 *      add description in help screen                                        *
 *      prevent update Mon186 from ram                                        *				
 *  V3.36 14.06.99 - support for A2-3                                         *
 *      support for A2-3, version handling                                    *
 *      changing structs for com ports                                        *
 *      change autobaud character to '@'                                      *
 *      safer environ check and storage handling                              *
 *      flash handling changed for fujitsu & thoshiba devices                 *
 *  V3.35 04.01.99 - timeout monitor remote mode                              *
 *      return blocked flag in com functions                                  *
 *      new makefile and structure of files                                   *
 *      cmd '@' in main loop IrqEntry()                                       *
 *      reset after end of remote connection                                  *
 *  V3.34 28.09.98 - some minior bugfixes, add serial mode 8N2                *
 *      GetCom(),SetCom(),SetComState() serial mode settings                  *
 *      SetComConfig() convert string to upper chars                          *
 *  V3.33 23.07.98 - remote debuging interface                                *
 *      Remote control and warm boot magic in TMR1_CMPB                       *
 *  V3.32 01.07.98 - bugfix, timer initialisation, autobaud                   *
 *  V3.30 18.05.98 - initial release                                          *
 *                                                                            *
 ******************************************************************************
 *                                                                            *
 *  Source Tree:                                                              *
 *                                                                            *
 *  MAIN.C                                                                    *
 *     This file contains the interrupt 1 service routine, which is the       *
 *     main debug loop of the monitor.                                        *
 *                                                                            *
 *  STARTUP.ASM                                                               *
 *     This file contains the monitor startup code.                           *
 *                                                                            *
 *  DEVICE.C                                                                  * 
 *     This file contains most of the hardware platform dependent             *
 *     C code in the monitor. There are routines to initialize                *
 *     all system hardware, light up the LEDs, handle the timers              *
 *     and rtc and environ handling with the i2c eeprom.                      *
 *                                                                            *
 *  SERIAL.C                                                                  *
 *     This file contains all of the hardware platform dependent              *
 *     serial I/O code in the monitor.                                        *
 *                                                                            *
 *  PRINTF.C                                                                  *
 *     This file contains discrete input line scanning routines to            *
 *     scan for the kinds of data most frequently required by the             *
 *     monitor from the user and standard IO functions. The most-used         *
 *     one is the ubiquitous printf, which is a scaled-down version.          *
 *                                                                            *
 *  CONINPUT.C                                                                *
 *     This file contains console input routines, both for line-oriented      *
 *     input, and for getting a yes/no response to a query.                   *
 *                                                                            *
 *  FLASH.C                                                                   *
 *     This file contains data and routines for low level programming         *
 *     of most common AMD flash devices.                                      *
 *                                                                            *
 *  DOSEMU.C                                                                  *
 *     This file contains a minimal DOS emulator, primarily an                *
 *     int 21h handler with a few supporting routines.                        *
 *     The COM int 14h handler is routed to int 22h.                          *
 *     Console, time, and memory allocation calls are supported.              *
 *                                                                            *
 *  CMDMEM.C                                                                  *
 *     This file contains all of the monitor's commands which pertain         *
 *     to memory, e.g. move, examine, search, fill, compare, dump             *
 *                                                                            *
 *  CMDREG.C                                                                  *
 *     This file contains all the code which handles the 'R' (register)       *
 *     command.  All registers and flags may be examined and changed.         *
 *                                                                            *
 *  CMDFILE.C                                                                 *
 *     This file contains routines to parse and store .HEX files,             *
 *     either into RAM or FLASH.  It supports standard Intel HEX              *
 *     format, and AMD LPD's relocatable extensions.                          *
 *                                                                            *
 *  STRING.C                                                                  *
 *     This file contains the standard C string functions, as well as         *                                                                            *
 *     miscellaneous special routines which don't really fit anywhere else,   *
 *     primarily data conversion routines.                                    *
 *                                                                            *
 ******************************************************************************
 *                                                                            *
 * Copyright 1996 Advanced Micro Devices, Inc.                                *
 *           1998 Funkanlagen Leipoldt OHG                                    *
 *                                                                            *
 * This software is the property of Advanced Micro Devices, Inc  (AMD)  which *
 * specifically  grants the user the right to modify, use and distribute this *
 * software provided this notice is not removed or altered.  All other rights *
 * are reserved by AMD.                                                       *
 *                                                                            *
 * AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS *
 * SOFTWARE.  IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL *
 * DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR *
 * USE OF THIS SOFTWARE.                                                      *
 *                                                                            *
 * So that all may benefit from your experience, please report  any  problems *
 * or suggestions about this software back to AMD.  Please include your name, *
 * company,  telephone number,  AMD product requiring support and question or *
 * problem encountered.                                                       *
 *                                                                            *
 * Advanced Micro Devices, Inc.       Worldwide support and contact           *
 * Logic Products Division            information available at:               *
 * Systems Engineering                                                        *
 * 5204 E. Ben White Blvd.     http://www.amd.com/html/support/techsup.html   *
 * Austin, TX 78741                                                           *
 *                                                                            *
 * Funkanlagen Leipoldt OHG           Worldwide support and contact           *
 * Gewerbering 6                      information available at:               *
 * 98704 Langewiesen                                                          *
 * Tel (+49)03677/80420        http://www.falcom.de  email:info@falcom.de     *
 * Fax (+49)03677/8042215                                                     *
 *****************************************************************************/

Download Driver Pack

How To Update Drivers Manually

After your driver has been downloaded, follow these simple steps to install it.

  • Expand the archive file (if the download file is in zip or rar format).

  • If the expanded file has an .exe extension, double click it and follow the installation instructions.

  • Otherwise, open Device Manager by right-clicking the Start menu and selecting Device Manager.

  • Find the device and model you want to update in the device list.

  • Double-click on it to open the Properties dialog box.

  • From the Properties dialog box, select the Driver tab.

  • Click the Update Driver button, then follow the instructions.

Very important: You must reboot your system to ensure that any driver updates have taken effect.

For more help, visit our Driver Support section for step-by-step videos on how to install drivers for every file type.

server: web4, load: 1.66