Software Serial Port for ROM/RAM Monitor

Size: px
Start display at page:

Download "Software Serial Port for ROM/RAM Monitor"

Transcription

1 Index 1. Introduction 2. Basic operation 3. Resources used by the Monitor with soft serial port 4. How to configure the soft serial routines 4.1. Changing the serial baud rate and the system clock frequency 4.2. Defining the Transmit and Timer parameters 4.3. Defining the Receive parameters 4.4. Defining the trap numbers and interrupt levels 5. ROM Monitor programming into flash 6. Project settings for the soft serial Monitor 7. Building the ROM/RAM Monitor with the Soft Serial port 8. Example Project 1 (using the RAM Monitor) 9. Example project 2 (using the ROM Monitor in flash) 10. How to order the soft serial routines? 1. Introduction When you make use of the ROM/RAM Monitor for debugging, the asynchrone serial interface from your processor is needed for the communication with your host computer. Therefore, this hardware serial port cannot be used by your application. This application note describes a software based serial port, replacing this hardware serial channel after the monitor is downloaded. This allows you to free the serial port for your own software. 2. Basic operation The soft serial port is based on two software interrupt routines that are written in assembly code. One routine is configured as a baud rate timer and is used for transmitting bits and for timing out the received frames from the input stream. The other interrupt routine records the low-to-high and the high-to-low transitions of the input stream. Every input pin which is capable of generating an interrupt on both the rising and falling edge of the signal can be used for your soft serial receive input pin. Every output pin that can be controlled by the software is suitable for your soft serial output pin. The adjustable baud rate timer is set up with one of the timers T2..T6 and can be as fast as 38K4 bits/second. Because interrupts are needed within the ROM/RAM Monitor, the Non-Maskable Interrupt trap vector (NMI) cannot be used anymore by CrossView for setting breakpoints or for single stepping. Therefore, a user defined trap vector will be used instead. When using the RAM Monitor, you must use the normal hardware serial port to download the monitor onto your target board. After that, CrossView will lose connection to the target board since the monitor will start to communicate over the soft serial interface instead. At this point, you should switch the serial interface from your host computer to this soft serial channel. For this, you can use a switchbox or simply change connectors. When using the Monitor programmed into ROM, you can simply use the soft serial interface right away. DocId: AN Copyright 2001 TASKING, Inc. Page 1 of 10

2 3. Resources used by the Monitor with soft serial port This chapter gives an overview of which hardware en software resources are used by the ROM/RAM Monitor when using the soft serial port. Hardware resources: -An input pin for the soft serial receive input stream. -An output pin for the soft serial transmit output stream. -One General Purpose Timer (T2..T6 configured as baud rate timer). Interrupt resources: -A user selectable software interrupt for setting breakpoints and for single stepping by CrossView (instead of the NMI vector). -A Timer interrupt, corresponding to the chosen baud rate timer (T2..T6). -A receive interrupt, corresponding to the chosen input pin. -PEC interrupt service channels 6 and 7 (highest priority interrupt level is being used within the monitor). Software resources: -Less than 3Kbyte for code sections -140 bytes RAM for data sections and user stack -Two register banks of 16 words and about 22 words data located in internal RAM See also chapter 6 Project settings for the soft serial Monitor. 4. How to configure the soft serial routines This chapter describes how you can change the default settings for the soft serial routines. The default values are as follows: Description: Default Value: Defined in File: System clock frequency 20MHz Soft_serport.h Baud rate 38K4 Soft_serport.h Transmit baud rate timer Timer 6 Soft_serport.h Transmit output pin Bit 0 of Port 3 (T0IN) Soft_serport.h Receive input pin Bit 2 of Port 3 (CAPIN) Soft_serport.h Transmit interrupt level Priority level 15, group 3 Soft_serport.c Receive interrupt level Priority level 15, group 2 Soft_serport.c Interrupt vector for CrossView Trap Number = 8 Makefile Interrupt vector for CrossView Priority level = 14 Soft_serport.c 4.1 Changing the serial baud rate and the system clock frequency The baud rate and the system clock are defined in file Soft_serport.h as follows: #define CLKFREQ /* system clock frequency in MHz */ #define BAUDRATE /* baud rate in bits/s (max. 38K4)*/ You can change the clock frequency to meet the specifications of your target board. DocId: AN Copyright 2001 TASKING, Inc. Page 2 of 10

3 The maximum baud rate for the soft serial routines is 38K4. It may be necessary to slow down the communication speed when the signal distortion is too high, e.g. as a result of long cables. Note: Unlike the normal ROM/RAM Monitor, the Soft serial version does not have the auto detect baud rate feature. This means the baud rate has a fixed value, as stated above Defining the Transmit and Timer parameters The baud rate timer is defined in file Soft_serport.h. The parameter for the default timer is 6. You can change the baud rate timer by replacing the number 6 into one of the other timer numbers 2..5 (timer 1 cannot be used!). For example, to select timer 2, change the timer definitions as follows: #define SOFTTIMER 2 /* fill in baud rate timer nr here */ #define BdrtT T2 /* GPT Timer 2 is being used */ #define BdrtTIC T2IC /* Interrupt control register */ #define BdrtTCON T2CON /* Timer control register */ #pragma asm BdrtT LIT 'T2' ; name of timer in assembly #pragma endasm The output pin for the serial communication is set to T0IN (bit 0 from port 3) by default. If you want to change the output pin definition, you must also change the way this I/O pin is set to output and how to initialize this pin with 1. This C-code, defined with macro TXDOUTPUT_INIT, will be invoked into the initialization routine SerialInit() from file soft_serport.c. For example, to use bit 11 from Port 2 as the output pin, change the definitions as follows: /* Define transmit output pin here: */ #pragma asm TxD1 LIT 'CC11IO' ; transmit pin: port2, bit 11 #pragma endasm /* Define how to set Txd output pin to output! Start value = '1' */ #define TXDOUTPUT_INIT \ _putbit( 1, P2, 11); /* set output at '1' */ \ _putbit( 1, DP2, 11); /* P2.11 is output = TXD1 */ The name of the output pin, like T0IN or CC11IO can be found in the register file c166\include\reg167.h Defining the Receive parameters The input pin for the serial communication is defined as CAPIN by default in file Soft_serport.h. Every input pin which is capable of generating an interrupt on both the rising and falling edge of the signal can be used for the receive input pin. If you want to change the input pin definition, you must also change the way this I/O pin is set to input and how to initialize this bit with 1. Furthermore, you must also specify that pin will generate an interrupt on both signal transitions (falling and rising edge) and how to initialize the corresponding interrupt control register. This resulting C-code, defined with macro RXDINPUT_INIT, will be invoked into the initialization routine SerialInit() from file soft_serport.c. For example, to define bit 14 from Port 2 (EX5IN) as the input pin, change the definitions as follows: DocId: AN Copyright 2001 TASKING, Inc. Page 3 of 10

4 /* Define receive input pin here: */ #pragma asm RxD1 LIT 'EX5IN' ; receive I/O pin used #pragma endasm /* Define how to set RxD pin to input and set its interrupt level */ #define RXDINPUT_INIT \ _putbit( 1, P2, 13); /* set input to '1' */ \ _putbit( 0, DP2, 13); /* be sure direction is input! */ \ CC13IC = RXDprinitval; /* set up EX5IN = RxD input pin interrupt */ \ EXICON = ( 3 << 10 ); /* to generate interrupts on both tansitions */ The initialization value RXDprinitval, used for the interrupt control register CC13IC is defined in file soft_serport.c. Because all interrupt control registers for the 166-family are configured the same way, it is not very likely this value will need to be changed. The name of an input pin, such as CAPIN or EX6IN, can be found in the register file c166\include\reg167.h. Because CrossView will initialize several SFRs (special function registers) after a reset of the target board, it is necessary to skip certain initializations for SFRs being used by the receive routine. Otherwise the receive interrupts will not work anymore. Therefore, SFRs that must be skipped during initialization are stated in file Soft_serport.h as well. Two SFRs can be mentioned here, using macros SKIPSFR1 and SKIPSFR2. These macros are used in function test_hp_softserial() (see file command.c) to skip the corresponding addresses. For the example described above, SKIPSFR1 and SKIPSFR2 must be defined as follows: /* define SFRs used by the receive routine */ #define SKIPSFR1 EXICON /* SFRs being used: EXICON and CC13IC */ #define SKIPSFR2 CC13IC Finally, you should fill in the right interrupt trap number for the interrupt control register. For this, see the next chapter Defining the trap numbers and interrupt levels The trap number definitions can be found in file Soft_serport.h. For the transmit timer Tx, the corresponding trap number is calculated automatically by means of the macro SOFTTIMER. For the receive interrupt, you must fill in the trap number yourself in case you have changed the interrupt control register (see chapter 4.3. Defining the Receive parameters ). By default, trap number 0x27 is filled in, this corresponds to register CRIC (see your CPU manual). For the interrupt control register CC13IC, described in the example above, trap number 0x1D must be filled in: /* trap numbers for transmit timer Tx and the receive interrupt routine */ #define TXD_JUMPTABENTRY (0x20+SOFTTIMER) /* defined by macro SOFTTIMER */ #define RXD_JUMPTABENTRY 0x1D /* trap number for CC13IC */ After the Monitor is entered, the Monitor priority interrupt level will be raised to a level just below the transmit and receive interrupt levels to avoid application interrupts. By default, these transmit and DocId: AN Copyright 2001 TASKING, Inc. Page 4 of 10

5 receive levels are set to the highest priority which is level number 15. Therefore, it is highly recommended to maintain the priority level for the monitor to level number 14. /* definitions for the MONITOR */ #define INT_LEVEL_MON 14U /* interrupt level monitor */ Note: Because interrupt level 15 with group level 2 and 3 are being used for the receive and transmit routines, you should be careful when PEC6 or PEC7 transfer is being used. This may lead to timing problems for the serial port. Pay close attention when the PEC6/7 transfer counter remains zero, the corresponding interrupt service routine will be activated which can result in a transmit or receive error. Because interrupts are needed within the ROM/RAM Monitor, the Non-Maskable Interrupt trap vector (NMI) cannot be used anymore by CrossView for setting breakpoints or for single stepping. Therefore, a user defined trap vector must be used instead. This vector is specified as a macro in the make file (called mon167\makefile), listed as DNR = n where n is corresponding to the trap number. By default, trap number 8 (vector location 20h) is listed, as follows: DNR = 8 If you want to change this trap number, edit the makefile and change the trap number. Only software traps are allowed. 5. ROM Monitor programming into flash Special attention is needed when the ROM Monitor is programmed into flash, because some modifications are needed to the files soft_mon.c and soft_vectab.asm. Two ROM Monitors are supported with the soft serial routines: the ROM Monitor using Dual Vector Table (m167d) and the ROM Monitor using Memory Switch (m167s). In file soft_mon.c the initialization of SYSCON, BUSCONx and ADDRSELx should be changed according to the hardware configuration of your target board. This is because the register init-values from the configuration file are NOT passed to the monitor by CrossView when the ROM monitor is being used. This is a restriction of CrossView. These initializations must take place before function _einit() is executed. In file soft_mon.c, the system registers are loaded with the following values: #if defined(rom_dual) defined(rom_swap) /* initialize system registers */ #pragma asm /* for ROM Monitor */ MOV SYSCON,#0080H MOV BUSCON0,#049FH ; Enable CS0, no Waitstates MOV ADDRSEL1,#0083H ; 32Kbyte RAM from 0x8000 to 0xffff MOV BUSCON1,#049FH ; Enable CS1, no Waitstates #pragma endasm #endif That means, CS0 is used to address the external flash memory and 32Kbyte of external RAM is addressed by CS1 and located from address 0x8000 to 0xffff. You can change these values to meet the hardware specifications of your target board. But you have to remember where the RAM and ROM areas for the monitor are located. See the *.map file corresponding to your monitor in directory softmon167. To achieve the maximum baudrate of 38K4, MCTC from BUSCONx is set to no wait states. This requires RAM devices with 55ns access time. If MCTC is set to a different value, the baud rate must be lowered accordingly. DocId: AN Copyright 2001 TASKING, Inc. Page 5 of 10

6 When the Monitor with Dual Vector Table is being used, the receive and transmit interrupt vectors must be filled in correctly in file soft_vectab.asm as well. These interrupt vectors must be the same as stated in file Soft_serport.h (see chapter 4.4, TXD_JUMPTABENTRY and RXD_JUMPTABENTRY). The default values 027H) So when you have changed the interrupt level(s) in Soft_serport.h, you should change the values here too. To rebuild the monitors, see chapter 7 Building the ROM/RAM Monitor with the Soft Serial port. Some of the flash tools need the Intel hex file format to program the monitor into flash. Please refer to chapter 7, how to generate IHEX files instead of the default Motorola S record format. Finally, program the monitor into flash following the instructions of your flash tool. 6. Project settings for the soft serial Monitor When you use the soft serial Monitor, you should reserve the Monitors memory areas when building your application. To do so, select EDE Linker/Locator Options Reserve, and fill in the values as listed in the following table at the field Reserve memory for Rom Monitor Resources. RAM Monitor (m164r, m167n, m167r, m167s): ROM Monitor Dual Vector Table (m167d) ROM Monitor using Memory Switch (m167s): 0200h-0BFFh, 0FCC0h-0FD30h 0000h-0BFFh, 0C000h-0C0FFh, 0FCC0h-0FD30h 0200h-02FFh, 8000h-89FFh, 0FCC0h-0FD30h Furthermore, you should be careful that the right values for the SYSCON, BUSCONx and ADDRSELx registers are stated in your configuration file (*.cfg). These values will depend on the hardware of your target board and the memory map of your application. Finally, set the correct communication baudrate for CrossView as listed in file Soft_serport.h (see chapter 4.1) at EDE CrossView Pro Debugger Options Baudrate. Additional Linker/Locator Options for the ROM Monitor with Dual Vector Table (m167d): Fill in the start address of your application (see label CSTART_PR in your *.map file) at EDE Linker/Locator Options Format Start address, or use the command line option saddress of ieee166. Use the VECTAB(address) control at EDE Linker/Locator Options Miscellaneous Additional Locator Controls, to locate the user vector table at the default address of 8000H. Define the memory map for your application: select EDE Linker/Locator Options Memory and fill in the ROM and RAM areas where you want to locate your application. The range of 8000h to 81ffh must be specified as ROM for locating the interrupt vector table. 7. Building the ROM/RAM Monitor with the Soft Serial port After finishing the configuration settings of the soft serial port (see chapter 4), it is time to rebuild the ROM/RAM monitors. The following monitors and boot programs are supported: DocId: AN Copyright 2001 TASKING, Inc. Page 6 of 10

7 Supported Monitors: Supported Boot Programs: m167s.sre memory swap b167.sre standard boot program m167n.sre NMI vector b167a.sre SAB C167 AA step m167r.sre reset vector bi_me167.sre I+ME C167C board M167d.sre Dual Vector Table b167nrb.sre no ram boot ( Phytec MM167 ) m164r.sre reset vector, Timer T4 b167snrb.sre no ram boot and Phytec memory switch First, make the softmon167 subdirectory the current working directory and type: c:\c166\bin\mk166 clean This will remove all files (*.sre, *..map, *.obj and *.ilo files) which were created before when building the monitors and boot programs. Now type: c:\c166\bin\mk166 This invocation of mk166 will execute the make file called makefile. As a result, the S-Record files (*.sre) of the boot programs and monitors are created in the softmon167 subdirectory. You must copy the boot and monitor files you want to use (as stated in your configuration file) from this subdirectory to the c166\etc directory. If you need the Intel HEX file format instead of the Motorola S record format, invoke the make utility as follows: c:\c166\bin\mk166 IHEX= As a result, the IHEX files (*.hex) of the boot programs and monitors are created in the softmon167 subdirectory. 8. Example project 1 (using the RAM Monitor) This chapter describes an example project with the RAM Monitor based on a Phytec KitCON-167 evaluation board. This board has an extra serial connector that can be used for the soft serial port. That means no additional hardware is required. The project queensh.pjt from the c166\examples\queens directory will be used to show you all the instructions needed to start CrossView with the soft serial Monitor. For this example, two serial ports are needed: one on your host PC to communicate with CrossView, and one to show you the output of the queens example using the VT100 terminal format. For this, a second serial port on your host PC with a VT100 software terminal emulator *) can be used. Step by step instructions: 1. Start EDE and open the project c166\examples\io\queensh.pjt 2. Verify which type of processor is being used on the evaluation board (e.g. 167CR) and fill in the correct CPU type at EDE Project Options CPU. Press OK to continue. 3. Select EDE Linker/Locator Options Reserve, and fill in at Reserve memory for Rom Monitor Resources : 0200h- 0BFFh, 0FCC0h-0FD30h (see chapter 5). Press OK to continue. 4. Build the project. 5. Check the clock frequency of the evaluation board (e.g. 20MHz using the default jumper settings) and verify this value is defined correctly in file Soft_serport.h. Also check if the baud rate is defined as (see chapter 4.1). Check file Soft_serport.h for the default values as stated in chapter 4. DocId: AN Copyright 2001 TASKING, Inc. Page 7 of 10

8 6. Make the c166\examples\softmon\softmon167 subdirectory the current working directory. Type: c:\c166\bin\mk166 clean to clean this directory and type c:\c166\bin\mk166 to rebuild the soft serial boot and monitor programs. 7. Copy the boot program b167nrb.sre and the monitor program m167r.sre (as stated in file c166\etc\kc167.cfg) from the softmon167 subdirectory to the c166\etc\ directory. 8. Configure the jumpers on the KitCON-167 evaluation board. To configure CAPIN as RxD pin, and T0IN as TxD output for the serial connector P2, use the following jumper settings: JP8 closed, JP9 across 2+3, JP10 across 2+3. Note: If p3.8 and p3.9 are being used as the debug interface (new model of the KC167, see the Phytec manual), JP2 must across 2+3 also. Furthermore, p3.8 (connector X3: pin 109) must be connected to p3.2 (X3: pin 102), and p3.9 (X3: pin 113) must be connected to p3.0 (X3: pin 101) by using two additional wires. 9. Attach the power supply to the power connector of the evaluation board. Connect the serial port P1 (standard serial port) to the COM port of your host computer and reset the evaluation board. 10. Select EDE CrossView Pro Options, choose the ROM/RAM Monitor, set the baud rate to and select KitCON-167 as the evaluation board. Press OK to continue. 11. Start a debug session from EDE. The bootstrap loader and the monitor will be downloaded first. After this, the monitor will switch to the soft serial port and as a result, CrossView will loose the connection. 12. Switch the serial connector from the evaluation board from P1 to P2. Because P2 is a male connector, a simple adapter cable/connector or a switch box is necessary here, to switch from male to female connector. 13. Retry to make the connection. Now, CrossView will download the application onto the evaluation board using the soft serial connection. 14. Connect serial Port P1 to a VT100 terminal, or connect P1 to a second COM port of your PC and start a VT100 emulator program *) for this COM port, with the following settings: baudrate 9600, 8 data bits, 1 stop bit, no parity and no handshaking. 15. Start the queens example with CrossView. The output will be shown on the VT100 terminal while you can use CrossView connected to the soft serial port, for debugging. *) Such as Tera Term Pro version 2.3 (freeware) or Kermit. 9. Example project 2 (using the ROM Monitor in flash) This example describes a project using the ROM Monitor with Dual Vector Table programmed into flash, based on a Phytec KitCON-167 evaluation board. This evaluation board has an extra serial connector which can be used for the soft serial port. That means no additional hardware is required. The project queensh.pjt from the c166\examples\queens directory will be used to show you all the instructions needed to start CrossView with the soft serial Monitor. For this example two serial ports are needed: one on your host PC to communicate with CrossView, and one to show you the output of the queens example using the VT100 terminal format. For this a second serial port on your host PC with a VT100 software terminal emulator *) can be used. Step by step instructions: 1. Start EDE and open the project c166\examples\io\queensh.pjt 2. Verify which type of processor is being used on the evaluation board (e.g. 167CR) and fill in the correct CPU type at EDE Project Options CPU. Press OK to continue. 3. Select EDE Linker/Locator Options Reserve, and fill in at Reserve memory for Rom Monitor Resources : 0000h- 0BFFh, 0C000h-0C0FFh, 0FCC0h-0FD30h. Select the Miscellaneous tab, and fill in at the Additional Locator DocId: AN Copyright 2001 TASKING, Inc. Page 8 of 10

9 Controls: VECTAB(08000h). Select the Memory tab, and fill in 08000h-0AFFFh for the ROM area, and 0B000H-0BFFFh for the RAM area (see chapter 6). Press OK to continue. 4. Select EDE CPU Configuraion syscon, and set the Write Configuration mode to WR#/BHE# is WRL#/WRH#. 5. Select EDE Bus Configuration Buscon0, and set the Memory cycle time to 0 wait states. Select the Buscon1 tab, and enable the address window. Set the External bus configuration to 16 bits demultiplexed and set the Memory cycle time to 0 wait states (see the KitCON167 documentation). Select the Addrsel1 tab, and set the range size to 32K, and fill in 08h for the range start address. The external RAM will be located from 8000h to 0FFFFh, and used for downloading the application. Press OK to continue. 6. Build the project. 7. Open file queensh.map and look for CSTART_PR, the start label of the application. Fill in this start address (8910h) at EDE Linker/Locator Options Format Start Address. (see chapter 6). Press OK to continue. 8. Make the project again, to add this start address to the IEEE output file. 9. Copy file KC167.cfg from the c166\etc directory to the project directory (c166\examples\queens). Edit file KC167.cfg to specify 32K of RAM is located from address 8000h-FFFFh: BUSCON1 = 0x49F, ADDRSEL1 = 0x Check the clock frequency of the evaluation board (e.g. 20MHz using the default jumper settings) and verify this value is defined correctly in file Soft_serport.h. Also check if the baud rate is defined as (see chapter 4.1). Check file Soft_serport.h for the default values as stated in chapter Check the initialization values for SYSCON, BUSCONx and ADDRSELx in file soft_mon.c as described in chapter 5 (CS0: 32K external flash, CS1: 32K external RAM from 08000h to 0FFFFh). Also check the default values for the interrupt vectors in file Soft_vectab.asm (see chapter 5): S1TX_INT = 26H, S1RX_INT = 27H. 12. Make the c166\examples\softmon\softmon167 subdirectory the current working directory. Type: c:\c166\bin\mk166 clean to clean this directory and type c:\c166\bin\mk166 IHEX= to rebuild the soft serial boot and monitor programs in Intel HEX format. 13. Clear the flash memory of the evaluation board and program the Monitor m167d.hex into the flash memory using the flash tools supplied with the evaluation board. 14. Configure the jumpers on the KitCON-167 board. To configure CAPIN as RxD pin, and T0IN as TxD output for the serial connector P2, use the following jumper settings: JP8 closed, JP9 across 2+3, JP10 across 2+3. Note: If p3.8 and p3.9 are being used as the debug interface (new model of the KC167, see the Phytec manual), JP2 must across 2+3 also. Furthermore, p3.8 (connector X3: pin 109) must be connected to p3.2 (X3: pin 102), and p3.9 (X3: pin 113) must be connected to p3.0 (X3: pin 101) by using two additional wires. 15. Attach the power supply to the power connector of the evaluation board. Connect the serial port P2 (soft serial port) to the COM port of your host computer. Because P2 is a male connector, a simple adapter cable/connector or a switch box is necessary here, to go over from male to female connector. Remove jumper JP2 and reset the evaluation board. The monitor in flash is executed now. 16. Select EDE CrossView Pro Options, choose the ROM/RAM Monitor, set the baud rate to and select KitCON-167 as the evaluation board. Press OK to continue. 17. Start a debug session from EDE. CrossView will download the application onto the target board using the soft serial connection. 18. Connect serial Port P1 to a VT100 terminal, or connect P1 to a second COM port of your PC and start a VT100 emulator program *) for this COM port, with the following settings: baudrate 9600, 8 data bits, 1 stop bit, no parity and no handshaking. 19. Start the queens example with CrossView. The output will be shown on the VT100 terminal while you can use CrossView connected to the soft serial port, for debugging. *) Such as Tera Term Pro version 2.3 (freeware) or Kermit. DocId: AN Copyright 2001 TASKING, Inc. Page 9 of 10

10 10. How to order the soft serial routines? The soft serial routines can be obtained for free when you have purchased the ROM/RAM Monitor package for toolchain V7.0R1 or when you have received previously an update for V7.0R1. Please fill in the form below and send it to to order the soft serial routines. They will be sent to you as a WINZIP file of about 50Kbyte in size. COMPANY: COUNTRY: NAME: PRODUCT: C-Compiler C/C++ Compiler ROM/RAM Monitor *) SERIAL NR: Please send this form to: TSW_logistics@tasking.nl *) Underline your product DocId: AN Copyright 2001 TASKING, Inc. Page 10 of 10

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board Quick Start Tutorial Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board This explains how to use the TASKING Microsoft* Windows*-based software development tools

More information

Hardware and Software Requirements

Hardware and Software Requirements C Compiler Real-Time OS Simulator Training Evaluation Boards Installing and Using the Keil Monitor-51 Application Note 152 May 31, 2000, Munich, Germany by Keil Support, Keil Elektronik GmbH support.intl@keil.com

More information

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C62P Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 1.0 Introduction A Technical Application Note from Doppler System July 5, 1999 Version 3.x of the DDF6000, running version

More information

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Application te Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Abstract This

More information

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1 RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer

More information

Introduction: Implementation of the MVI56-MCM module for modbus communications:

Introduction: Implementation of the MVI56-MCM module for modbus communications: Introduction: Implementation of the MVI56-MCM module for modbus communications: Initial configuration of the module should be done using the sample ladder file for the mvi56mcm module. This can be obtained

More information

Using HiTOP with the HOT16x Hands-On Training Materials

Using HiTOP with the HOT16x Hands-On Training Materials HOT16x-4 An Add-On to the HOT16x Hands-On Training Materials for the C166 Family using the HiTOP Debugger (from Hitex; plus DAvE, the kitcon-16x Starter Kit, the Keil or Tasking C-Compiler, and an oscilloscope)

More information

Serial Communications

Serial Communications Serial Communications 1 Serial Communication Introduction Serial communication buses Asynchronous and synchronous communication UART block diagram UART clock requirements Programming the UARTs Operation

More information

Using the HCS12 Serial Monitor on Wytec Dragon-12 boards. Using Motorola s HCS12 Serial Monitor on Wytec s Dragon-12 boards

Using the HCS12 Serial Monitor on Wytec Dragon-12 boards. Using Motorola s HCS12 Serial Monitor on Wytec s Dragon-12 boards Using Motorola s HCS12 Serial Monitor on Wytec s Dragon-12 boards Wytec s Dragon-12 development boards are pre-installed with DBug-12, a small monitor program which allows a user to interact with the board

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

ET-BASE AVR ATmega64/128

ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 which is a Board Microcontroller AVR family from ATMEL uses MCU No.ATmega64 and ATmega128 64PIN. Board ET-BASE AVR ATmega64/128 uses MCU s resources on

More information

MANUAL FOR RX700 LR and NR

MANUAL FOR RX700 LR and NR MANUAL FOR RX700 LR and NR 2013, November 11 Revision/ updates Date, updates, and person Revision 1.2 03-12-2013, By Patrick M Affected pages, ETC ALL Content Revision/ updates... 1 Preface... 2 Technical

More information

Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers. User s Guide

Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers. User s Guide Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers User s Guide Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware

More information

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,

More information

Modbus Communications for PanelView Terminals

Modbus Communications for PanelView Terminals User Guide Modbus Communications for PanelView Terminals Introduction This document describes how to connect and configure communications for the Modbus versions of the PanelView terminals. This document

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual Version 1.0 - January 20, 2015 CHANGE HISTORY Version Date Description of Changes 1.0 January 20, 2015 Initial Publication

More information

National CR16C Family On-Chip Emulation. Contents. Technical Notes V9.11.75

National CR16C Family On-Chip Emulation. Contents. Technical Notes V9.11.75 _ V9.11.75 Technical Notes National CR16C Family On-Chip Emulation Contents Contents... 1 1 Introduction... 2 2 Emulation options... 3 2.1 Hardware Options... 3 2.2 Initialization Sequence... 4 2.3 JTAG

More information

M68EVB908QL4 Development Board for Motorola MC68HC908QL4

M68EVB908QL4 Development Board for Motorola MC68HC908QL4 M68EVB908QL4 Development Board for Motorola MC68HC908QL4! Axiom Manufacturing 2813 Industrial Lane Garland, TX 75041 Email: Sales@axman.com Web: http://www.axman.com! CONTENTS CAUTIONARY NOTES...3 TERMINOLOGY...3

More information

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 232 232232 PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided it has been

More information

LINDY ELECTRONICS LIMITED & LINDY-ELEKTRONIK GMBH - SECOND EDITION

LINDY ELECTRONICS LIMITED & LINDY-ELEKTRONIK GMBH - SECOND EDITION RS-422/485 PCI Card User Manual English No. 51200 (2 Port) No. 51202 (4 Port) No. 51204 (8 Port) www.lindy.com LINDY ELECTRONICS LIMITED & LINDY-ELEKTRONIK GMBH - SECOND EDITION (Nov 2005) 1.0 Introduction

More information

ISHIDA BC-3000. Scale to Scale Communications

ISHIDA BC-3000. Scale to Scale Communications ISHIDA BC-3000 Scale to Scale Communications Setup Procedure & Operating Instructions March 2006 PN 94561 Revision History Date Page Description March 2006 Initial publication August 2006 2 Added RS-232

More information

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003)

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003) S-232 Baud ate Converter CE Model 232BC Documentation Number 232BC-3903 (pn5104-r003) International Headquarters B&B Electronics Mfg. Co. Inc. 707 Dayton oad -- P.O. Box 1040 -- Ottawa, IL 61350 USA Phone

More information

Programming the On-Chip Flash on a phycore-xc161 phycore-xc167

Programming the On-Chip Flash on a phycore-xc161 phycore-xc167 Application Note Programming the On-Chip Flash on a phycore-xc161 phycore-xc167 Application Note Edition July 2003 LAN-020e_1 Application Note Preface...1 1 Installing Infineon MemTool...2 2 Preparing

More information

8-Bit Flash Microcontroller for Smart Cards. AT89SCXXXXA Summary. Features. Description. Complete datasheet available under NDA

8-Bit Flash Microcontroller for Smart Cards. AT89SCXXXXA Summary. Features. Description. Complete datasheet available under NDA Features Compatible with MCS-51 products On-chip Flash Program Memory Endurance: 1,000 Write/Erase Cycles On-chip EEPROM Data Memory Endurance: 100,000 Write/Erase Cycles 512 x 8-bit RAM ISO 7816 I/O Port

More information

Keep it Simple Timing

Keep it Simple Timing Keep it Simple Timing Support... 1 Introduction... 2 Turn On and Go... 3 Start Clock for Orienteering... 3 Pre Start Clock for Orienteering... 3 Real Time / Finish Clock... 3 Timer Clock... 4 Configuring

More information

applicomio Profibus-DP

applicomio Profibus-DP BradCommunications Profibus-DP network interface cards allow deterministic I/O data acquisition for PC-based control applications. Features New! Support of Windows 32-bit and 64-bit (WoW64) Support of

More information

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr.

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr. CMPE328 Microprocessors (Spring 27-8) Serial Interfacing By Dr. Mehmet Bodur Objectives Upon completion of this chapter, you will be able to: List the advantages of serial communication over parallel communication

More information

1-Port R422/485 Serial PCIe Card

1-Port R422/485 Serial PCIe Card 1-Port R422/485 Serial PCIe Card Installation Guide 1. Introduction Thank you for purchasing this 1-Port RS422/485 Serial PCI Express (PCIe) Card. It is a universal add in card that connects to a PC or

More information

T3 Mux M13 Multiplexer

T3 Mux M13 Multiplexer T3 Mux M13 Multiplexer User Manual [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract

More information

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools

More information

Serial Communications

Serial Communications April 2014 7 Serial Communications Objectives - To be familiar with the USART (RS-232) protocol. - To be able to transfer data from PIC-PC, PC-PIC and PIC-PIC. - To test serial communications with virtual

More information

LOW COST GSM MODEM. Description. Part Number

LOW COST GSM MODEM. Description. Part Number Dual Band 900 / 1800 MHz Fax, SMS and Data Integral SIM Card holder Siemens TC-35i GSM Engine Rugged Extruded Aluminium Enclosure Compact Form Factor 86 x 54 x 25mm RS232 Interface with Auto baud rate

More information

PCAN-ISA. CAN Interface for ISA. User Manual

PCAN-ISA. CAN Interface for ISA. User Manual PCAN-ISA CAN Interface for ISA User Manual Products taken into account Product Name Model Item Number PCAN-ISA Single Channel One CAN channel IPEH-002074 PCAN-ISA Dual Channel Two CAN channels IPEH-002075

More information

APPLICATION NOTE. AT07175: SAM-BA Bootloader for SAM D21. Atmel SAM D21. Introduction. Features

APPLICATION NOTE. AT07175: SAM-BA Bootloader for SAM D21. Atmel SAM D21. Introduction. Features APPLICATION NOTE AT07175: SAM-BA Bootloader for SAM D21 Atmel SAM D21 Introduction Atmel SAM Boot Assistant (Atmel SAM-BA ) allows In-System Programming (ISP) from USB or UART host without any external

More information

Chapter 5 Cubix XP4 Blade Server

Chapter 5 Cubix XP4 Blade Server Chapter 5 Cubix XP4 Blade Server Introduction Cubix designed the XP4 Blade Server to fit inside a BladeStation enclosure. The Blade Server features one or two Intel Pentium 4 Xeon processors, the Intel

More information

(Cat. No. 6008-SI) Product Data

(Cat. No. 6008-SI) Product Data (Cat. No. 6008-SI) Product Data 1 Because of the variety of uses for this product and because of the differences between solid state products and electromechanical products, those responsible for applying

More information

Vicon Flash Upgrade Software

Vicon Flash Upgrade Software INSTRUCTION MANUAL Notes Refer to XX134 NO. XX134-13-01 REV. 1212 Vicon Flash Upgrade Software It is possible to upgrade software for the SurveyorVFT and Surveyor -Mini Camera Domes through a PC using

More information

Elettronica dei Sistemi Digitali Costantino Giaconia SERIAL I/O COMMON PROTOCOLS

Elettronica dei Sistemi Digitali Costantino Giaconia SERIAL I/O COMMON PROTOCOLS SERIAL I/O COMMON PROTOCOLS RS-232 Fundamentals What is RS-232 RS-232 is a popular communications interface for connecting modems and data acquisition devices (i.e. GPS receivers, electronic balances,

More information

Operating Systems 4 th Class

Operating Systems 4 th Class Operating Systems 4 th Class Lecture 1 Operating Systems Operating systems are essential part of any computer system. Therefore, a course in operating systems is an essential part of any computer science

More information

Using IDENT M System T with Modbus/TCP

Using IDENT M System T with Modbus/TCP Using IDENT M System T with Modbus/TCP Introduction The Pepperl+Fuchs IDENT M System T consists of two models MTT3000-F180-B12- V45-MON, which is a read only unit and the MTT6000-F120-B12-V45 which is

More information

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual Copyright 2007 SofTec Microsystems DC01197 We want your feedback! SofTec Microsystems is always on

More information

Block 3 Size 0 KB 0 KB 16KB 32KB. Start Address N/A N/A F4000H F0000H. Start Address FA000H F8000H F8000H F8000H. Block 2 Size 8KB 16KB 16KB 16KB

Block 3 Size 0 KB 0 KB 16KB 32KB. Start Address N/A N/A F4000H F0000H. Start Address FA000H F8000H F8000H F8000H. Block 2 Size 8KB 16KB 16KB 16KB APPLICATION NOTE M16C/26 1.0 Abstract The following article describes using a synchronous serial port and the FoUSB (Flash-over-USB ) Programmer application to program the user flash memory of the M16C/26

More information

An Introduction to MPLAB Integrated Development Environment

An Introduction to MPLAB Integrated Development Environment An Introduction to MPLAB Integrated Development Environment 2004 Microchip Technology Incorporated An introduction to MPLAB Integrated Development Environment Slide 1 This seminar is an introduction to

More information

RS-422/485 Multiport Serial PCI Card. RS-422/485 Multiport Serial PCI Card Installation Guide

RS-422/485 Multiport Serial PCI Card. RS-422/485 Multiport Serial PCI Card Installation Guide RS-422/485 Multiport Serial PCI Card Installation Guide 21 Contents 1. Introduction...1 2. Package Check List...2 3. Board Layouts and Connectors...3 3.1 2S with DB9 Male Connectors...3 3.1.1 JP5: UART

More information

Z8 Encore! XP F64xx Series Flash Microcontrollers. In-Circuit Emulator. User Manual UM016804-0208

Z8 Encore! XP F64xx Series Flash Microcontrollers. In-Circuit Emulator. User Manual UM016804-0208 Z8 Encore! XP F64xx Series Flash Microcontrollers In-Circuit Emulator Copyright 2008 by Zilog, Inc. All rights reserved. www.zilog.com ii Revision History Each instance in the Revision History table reflects

More information

ARM Thumb Microcontrollers. Application Note. Software ISO 7816 I/O Line Implementation. Features. Introduction

ARM Thumb Microcontrollers. Application Note. Software ISO 7816 I/O Line Implementation. Features. Introduction Software ISO 7816 I/O Line Implementation Features ISO 7816-3 compliant (direct convention) Byte reception and transmission with parity check Retransmission on error detection Automatic reception at the

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Application Note 6/2002 8-Bit Software Development Kit By Jiri Ryba Introduction 8-Bit SDK Overview This application note describes the features and advantages of the 8-bit SDK (software development

More information

A RF18 Remote control receiver MODULE

A RF18 Remote control receiver MODULE A RF18 Remote control receiver MODULE User Guide No part of this document may be reproduced or transmitted (in electronic or paper version, photocopy) without Adeunis RF consent. This document is subject

More information

H ARDWARE C ONSIDERATIONS

H ARDWARE C ONSIDERATIONS H ARDWARE C ONSIDERATIONS for Sidewinder 5 firewall software Compaq ProLiant ML370 G2 This document provides information on specific system hardware required for running Sidewinder firewall software on

More information

Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2)

Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2) Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2) Legal notice: Alcatel, Lucent, Alcatel-Lucent and the Alcatel-Lucent logo are trademarks of Alcatel-Lucent. All other trademarks are

More information

Operating Systems. Lecture 03. February 11, 2013

Operating Systems. Lecture 03. February 11, 2013 Operating Systems Lecture 03 February 11, 2013 Goals for Today Interrupts, traps and signals Hardware Protection System Calls Interrupts, Traps, and Signals The occurrence of an event is usually signaled

More information

THE EASY WAY EASY SCRIPT FUNCTION

THE EASY WAY EASY SCRIPT FUNCTION THE EASY WAY EASY SCRIPT FUNCTION Page: 1 Date: January 30th, 2006 The Easy Script Extension is a feature that allows to drive the modem "internally" writing the software application directly in a high

More information

HC08 Welcome Kit. Hardware- Version 2.01. User Manual

HC08 Welcome Kit. Hardware- Version 2.01. User Manual HC08 Welcome Kit Hardware- Version 2.01 User Manual June 30 2003 HC08 Welcome Kit Copyright (C)2000-2003 by MCT Elektronikladen GbR Hohe Str. 9-13 D-04107 Leipzig Telefon: +49-(0)341-2118354 Fax: +49-(0)341-2118355

More information

8051 MICROCONTROLLER COURSE

8051 MICROCONTROLLER COURSE 8051 MICROCONTROLLER COURSE Objective: 1. Familiarization with different types of Microcontroller 2. To know 8051 microcontroller in detail 3. Programming and Interfacing 8051 microcontroller Prerequisites:

More information

UMBC. ISA is the oldest of all these and today s computers still have a ISA bus interface. in form of an ISA slot (connection) on the main board.

UMBC. ISA is the oldest of all these and today s computers still have a ISA bus interface. in form of an ISA slot (connection) on the main board. Bus Interfaces Different types of buses: ISA (Industry Standard Architecture) EISA (Extended ISA) VESA (Video Electronics Standards Association, VL Bus) PCI (Periheral Component Interconnect) USB (Universal

More information

ALL-USB-RS422/485. User Manual. USB to Serial Converter RS422/485. ALLNET GmbH Computersysteme 2015 - Alle Rechte vorbehalten

ALL-USB-RS422/485. User Manual. USB to Serial Converter RS422/485. ALLNET GmbH Computersysteme 2015 - Alle Rechte vorbehalten ALL-USB-RS422/485 USB to Serial Converter RS422/485 User Manual ALL-USB-RS422/485 USB to RS-422/485 Plugin Adapter This mini ALL-USB-RS422/485 is a surge and static protected USB to RS-422/485 Plugin Adapter.

More information

F2103 GPRS DTU USER MANUAL

F2103 GPRS DTU USER MANUAL F2103 GPRS DTU USER MANUAL Add:J1-J2,3rd Floor,No.44,GuanRi Road,SoftWare Park,XiaMen,China 1 Zip Code:361008 Contents Chapter 1 Brief Introduction of Product... 3 1.1 General... 3 1.2 Product Features...

More information

Orbit PCI Mk 2 Network Card. User Manual. Part No. 502566 Issue 4

Orbit PCI Mk 2 Network Card. User Manual. Part No. 502566 Issue 4 Orbit PCI Mk 2 Network Card User Manual Part No. 502566 Issue 4 Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless

More information

Debugging Network Communications. 1 Check the Network Cabling

Debugging Network Communications. 1 Check the Network Cabling Debugging Network Communications Situation: you have a computer and your NetBurner device on a network, but you cannot communicate between the two. This application note provides a set of debugging steps

More information

PRN_LOAD 17.04.2002 16:22

PRN_LOAD 17.04.2002 16:22 PRN_LOAD.EXE is a user-friendly program for loading the HPR4915 with new firmware or fonts. It is based on the DOS operating system and also runs under WIN 95/89/NT WIN2000 WIN ME WIN XP and OS/2. However,

More information

GE Power Controls FIELDBUS APPENDIX PROFIBUS DP. Doc. No.: ASTAT Plus PB_Appendix-v0

GE Power Controls FIELDBUS APPENDIX PROFIBUS DP. Doc. No.: ASTAT Plus PB_Appendix-v0 GE Power Controls = FIELDBUS APPENDIX PROFIBUS DP = Doc. No.: ASTAT Plus PB_Appendix-v0 Fieldbus Appendix: PROFIBUS DP 1 Fieldbus Introduction...... 2 1.1 Introduction to Profibus-DP... 2 1.2 Network Overview...

More information

Technical Note. Micron NAND Flash Controller via Xilinx Spartan -3 FPGA. Overview. TN-29-06: NAND Flash Controller on Spartan-3 Overview

Technical Note. Micron NAND Flash Controller via Xilinx Spartan -3 FPGA. Overview. TN-29-06: NAND Flash Controller on Spartan-3 Overview Technical Note TN-29-06: NAND Flash Controller on Spartan-3 Overview Micron NAND Flash Controller via Xilinx Spartan -3 FPGA Overview As mobile product capabilities continue to expand, so does the demand

More information

MVME162P2. VME Embedded Controller with Two IP Slots

MVME162P2. VME Embedded Controller with Two IP Slots MVME162P2 VME Embedded Controller with Two IP Slots [Advantages] [Details] [Specifications] [Ordering Info] [.pdf version ] 25 MHz MC68040 with floating point coprocessor or 25 MHz MC68LC040 High-performance

More information

Digitale Signalverarbeitung mit FPGA (DSF) Soft Core Prozessor NIOS II Stand Mai 2007. Jens Onno Krah

Digitale Signalverarbeitung mit FPGA (DSF) Soft Core Prozessor NIOS II Stand Mai 2007. Jens Onno Krah (DSF) Soft Core Prozessor NIOS II Stand Mai 2007 Jens Onno Krah Cologne University of Applied Sciences www.fh-koeln.de jens_onno.krah@fh-koeln.de NIOS II 1 1 What is Nios II? Altera s Second Generation

More information

ROM Monitor. Entering the ROM Monitor APPENDIX

ROM Monitor. Entering the ROM Monitor APPENDIX APPENDIX B This appendix describes the Cisco router ROM monitor (also called the bootstrap program). The ROM monitor firmware runs when the router is powered up or reset. The firmware helps to initialize

More information

Quick Installation. A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding. Quick Installation

Quick Installation. A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding. Quick Installation Quick Installation A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding This chapter intends to get your new FuzzyScan scanner working with your existing system within minutes. General instructions

More information

3.1 Connecting to a Router and Basic Configuration

3.1 Connecting to a Router and Basic Configuration 3.1 Connecting to a Router and Basic Configuration Objective This lab will focus on the ability to connect a PC to a router in order to establish a console session and observe the user interface. A console

More information

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System ECU DB9 USB 20-060_A.DOC Page 1 of 18 9/15/2009 2009 Precision Airmotive LLC This publication may not be copied

More information

RS232 Board datasheet

RS232 Board datasheet RS232 Board datasheet Contents 1. About this document 2. General information 3. Board Layout 4. Getting Started 5. Circuit Description Appendix 1 Circuit Diagram Copyright 2004 Matrix Multimedia Limited

More information

WHQL Certification Approval...2 User Interface...3 SUNIX s COMLab..4

WHQL Certification Approval...2 User Interface...3 SUNIX s COMLab..4 INDEX WHQL Certification Approval...2 User Interface....3 SUNIX s COMLab..4 1.0 Introduction...5 2.0 Specification..5 2.1 Features 2.2 Universal Serial PCI Card 2.3 RS-232 Specification 2.4 Low Profile

More information

TruePort Windows 2000/Server 2003/XP User Guide Chapter

TruePort Windows 2000/Server 2003/XP User Guide Chapter TruePort Windows 2000/Server 2003/XP User Guide Chapter 0 This document provides the procedure for installing and using TruePort on Windows 2000/Server 2003/XP. Table of Contents What is TruePort?...3

More information

Computer Performance. Topic 3. Contents. Prerequisite knowledge Before studying this topic you should be able to:

Computer Performance. Topic 3. Contents. Prerequisite knowledge Before studying this topic you should be able to: 55 Topic 3 Computer Performance Contents 3.1 Introduction...................................... 56 3.2 Measuring performance............................... 56 3.2.1 Clock Speed.................................

More information

EMBEDDED C USING CODEWARRIOR Getting Started Manual

EMBEDDED C USING CODEWARRIOR Getting Started Manual Embedded C using CodeWarrior 1 68HC12 FAMILY EMBEDDED C USING CODEWARRIOR Getting Started Manual TECHNOLOGICAL ARTS, INC. Toll-free: 1-877-963-8996 (USA and Canada) Phone: +(416) 963-8996 Fax: +(416) 963-9179

More information

T-BOXN12R. First steps with T-BOXN12R. You can make it wireless. Date: 2004-07-16 Version 1.0

T-BOXN12R. First steps with T-BOXN12R. You can make it wireless. Date: 2004-07-16 Version 1.0 T-BOXN12R You can make it wireless First steps with T-BOXN12R Date: 2004-07-16 Version 1.0 Content 1. Purpose of this document... 3 2. T-BoxN12R overview... 4 3. First step... 5 3.1. Preparing your workshop

More information

TP- 051 GPS RECEIVER

TP- 051 GPS RECEIVER TP- 051 GPS RECEIVER CONTENTS 1. Overview 3 2. Features 3 3. The advantages of TP-051 GPS Receiver 4 4. The appearance and structures 4 5. Applications 5 6. Installation steps for the TP-051 GPS Receiver

More information

DRV8312-C2-KIT How to Run Guide

DRV8312-C2-KIT How to Run Guide DRV8312-C2-KIT How to Run Guide Version 1.1 October 2011 C2000 Systems and Applications Team This Guide explains the steps needed to run the DRV8312-C2-KIT with the software supplied through controlsuite.

More information

PC Notebook Diagnostic Card

PC Notebook Diagnostic Card www.winter-con.com User s Guide PC Notebook Diagnostic Card User s Guide 1 www.winter-con.com User s Guide INTRODUCTION Notebook Diagnostic Card is a powerful diagnostic tool for technicians and administrators

More information

1.1 Connection. 1.1.1 Direct COM port connection. 1. Half duplex RS232 spy cable without handshaking

1.1 Connection. 1.1.1 Direct COM port connection. 1. Half duplex RS232 spy cable without handshaking POS function Marchen POS-DVR surveillance system is a professional surveillance integrated with POS system. By bringing video and POS transaction data together, the POS-DVR surveillance system provides

More information

AN974 APPLICATION NOTE

AN974 APPLICATION NOTE AN974 APPLICATION NOTE Real time clock with ST7 Timer Output Compare By MCD Application Team 1 INTRODUCTION The purpose of this note is to present how to use the ST7 Timer output compare function. As an

More information

AVR Butterfly Training. Atmel Norway, AVR Applications Group

AVR Butterfly Training. Atmel Norway, AVR Applications Group AVR Butterfly Training Atmel Norway, AVR Applications Group 1 Table of Contents INTRODUCTION...3 GETTING STARTED...4 REQUIRED SOFTWARE AND HARDWARE...4 SETTING UP THE HARDWARE...4 SETTING UP THE SOFTWARE...5

More information

Ride7 for ARM. RAISONANCE Tools for the STRx and STM32 families. Overview and Getting Started

Ride7 for ARM. RAISONANCE Tools for the STRx and STM32 families. Overview and Getting Started Ride7 for ARM RAISONANCE Tools for the STRx and STM32 families Overview and Getting Started July 2007 Table of Contents 1. INTRODUCTION 4 1.1 RAISONANCE tools for the ARM family 6 1.2 Third party tools

More information

Nuvoton Nu-Link Debug Adapter User Manual

Nuvoton Nu-Link Debug Adapter User Manual Nuvoton Nu-Link Debug Adapter User Manual The information described in this document is the exclusive intellectual property of Nuvoton Technology Corporation and shall not be reproduced without permission

More information

Zypcom Application Note

Zypcom Application Note Zypcom Application Note Product: Z34-SX, Z34-RX, Z34-SE, Z34-RE, Z32t-SX, Z32t-SE, Z32t-RX, Z32b-SX, Z32b-SE, Z32b-RE and Z32b-RX Application: Leased Line Operation with Synchronous Data Synchronous leased

More information

Table of Contents. Safety Warnings..3. Introduction.. 4. Host-side Remote Desktop Connection.. 5. Setting Date and Time... 7

Table of Contents. Safety Warnings..3. Introduction.. 4. Host-side Remote Desktop Connection.. 5. Setting Date and Time... 7 Table of Contents Safety Warnings..3 Introduction.. 4 Host-side Remote Desktop Connection.. 5 Setting Date and Time....... 7 Changing Network Interface Settings.. 8 System Properties... 10 Changing the

More information

WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5

WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5 0 INDEX WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5 1.0 Introduction 6 2.0 Features.. 6 3.0 Hardware Guide... 7 3.1 System

More information

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter BIT COMMANDER Serial RS232 / RS485 to Ethernet Converter (Part US2000A) Copyrights U.S. Converters 1 Contents Overview and Features... 3 Functions..5 TCP Server Mode... 5 Httpd Client Mode.5 TCP Auto mode....6

More information

Software User Guide UG-461

Software User Guide UG-461 Software User Guide UG-461 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com ezlinx icoupler Isolated Interface Development Environment

More information

CNC File Transfer Box. Connecting the CNC File Transfer. CNC Transfer Program

CNC File Transfer Box. Connecting the CNC File Transfer. CNC Transfer Program CNC File Transfer Box The CNC File Transfer connects a serial CNC device to the network so files can be easily transferred from a computer to the CNC equipment. Any computer on the network can transfer

More information

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Copyright, 1999-2007 Virtual Integrated Design, All rights reserved. 1 Contents: 1. The Main Window. 2. The Port Setup Window. 3.

More information

8051 hardware summary

8051 hardware summary 8051 hardware summary 8051 block diagram 8051 pinouts + 5V ports port 0 port 1 port 2 port 3 : dual-purpose (general-purpose, external memory address and data) : dedicated (interfacing to external devices)

More information

RS-232 COMMUNICATIONS

RS-232 COMMUNICATIONS Technical Note D64 0815 RS-232 COMMUNICATIONS RS-232 is an Electronics Industries Association (EIA) standard designed to aid in connecting equipment together for serial communications. The standard specifies

More information

ENET-710. ENET-710 - Ethernet Module ENET-710 JAN / 06 FOUNDATION

ENET-710. ENET-710 - Ethernet Module ENET-710 JAN / 06 FOUNDATION ENET-710 ENET-710 - Ethernet Module JAN / 06 ENET-710 FOUNDATION E N E T 7 1 0 ME smar www.smar.com Specifications and information are subject to change without notice. Up-to-date address information is

More information

1. Make sure that no client accounts are open. 2. Click on Setup, then click Modem. The Modem Setup window will appear.

1. Make sure that no client accounts are open. 2. Click on Setup, then click Modem. The Modem Setup window will appear. SECURITY SYSTEM MANAGEMENT SOFTWARE FOR WINDOWS WINLOAD MODEM SETUP The modem setup is a very important step in the connection process. If the modem setup is not properly completed communication between

More information

Unique Micro Design Advanced Thinking Products. Model S151 UMD Transfer Utility for the Nippondenso BHT Series User Manual

Unique Micro Design Advanced Thinking Products. Model S151 UMD Transfer Utility for the Nippondenso BHT Series User Manual S151 User Manual Advanced Thinking Products Unique Micro Design Advanced Thinking Products Model S151 UMD Transfer Utility for the Nippondenso BHT Series User Manual Document Reference : DOC-S151-UM UMD

More information

CSE2102 Digital Design II - Topics CSE2102 - Digital Design II

CSE2102 Digital Design II - Topics CSE2102 - Digital Design II CSE2102 Digital Design II - Topics CSE2102 - Digital Design II 6 - Microprocessor Interfacing - Memory and Peripheral Dr. Tim Ferguson, Monash University. AUSTRALIA. Tel: +61-3-99053227 FAX: +61-3-99053574

More information

Teleservice via RS232 interface XC100/XC200

Teleservice via RS232 interface XC100/XC200 User Manual 10/10 MN0500005Z-EN replaces 07/04 AWB74-1490GB Teleservice via RS interface XC100/XC00 All brand and product names are trademarks or registered trademarks of the owner concerned. Emergency

More information

Dolphin In-Circuit programming Updating Firmware in the field

Dolphin In-Circuit programming Updating Firmware in the field Dolphin In-Circuit programming Updating Firmware in the field 1 Introduction In systems e.g. gateways, where an external microcontroller is connected to a Dolphin based product like a TCM300 it might be

More information

IAR C-SPY Hardware Debugger Systems User Guide. for Renesas PC7501 Emulator and ROM-monitor

IAR C-SPY Hardware Debugger Systems User Guide. for Renesas PC7501 Emulator and ROM-monitor IAR C-SPY Hardware Debugger Systems User Guide for Renesas PC7501 Emulator and ROM-monitor COPYRIGHT NOTICE Copyright 1995-2006 IAR Systems. All rights reserved. No part of this document may be reproduced

More information