HMS30C7110. WLAN Device Driver. Version 1.0. Multipurpose Network Processor. Hynix Semiconductor Inc.

Size: px
Start display at page:

Download "HMS30C7110. WLAN Device Driver. Version 1.0. Multipurpose Network Processor. Hynix Semiconductor Inc."

Transcription

1 Multipurpose Network Processor WLAN Device Driver Version 1.0 Hynix Semiconductor Inc.

2 - ii -

3 Copyright Hynix Semiconductor Inc. ALL RIGHTS RESERVED. No part of this publication may be copied in any form, by photocopy, microfilm, retrieval system, or by any other means now known or hereafter invented without the prior written permission of Hynix Semiconductor Inc. Hynix Semiconductor Inc. #1, Hyangjeong-dong, Heungduk-gu, Cheongju-si, Chungcheonbuk-do, Republic of Korea Homepage: Technical Support Homepage: H.Q. of Hynix Semiconductor Inc. Marketing Site Sales in Korea Telephone: 82-(0) Telephone: 82-(0) Telephone: 82-(0) Facsimile: 82-(0) Facsimile: 82-(0) Facsimile: 82-(0) World Wide Sales Network U.S.A. Taiwan Hong Kong Telephone: Telephone: 886-(0) Telephone: Facsimile: Facsimile: 886-(0) Facsimile: HMS30C7202 Datasheet, ver June iii -

4 Proprietary Notice Hynix logo are trademarks of Hynix Semiconductor Inc. Neither the whole nor any part of the information contained in, or the product described in, this document may be adapted or reproduced in any material from excepts with the prior permission of the copyright holder. The product described in this document is subject to continuous developments and improvements. All particulars of the product and its use contained in this document are given by Hynix in good faith. However, all warranties implied or expressed, including but not limited to implied warranties or merchantability, or fitness for purpose, are excluded. This document is intended only to assist the reader in the use of the product. Hynix Semiconductor Inc. shall not be liable for any loss or damage arising from the use of any information in this document, or any error or omission in such information, or any incorrect use of the product. Hynix Semiconductor Inc. may make changes to specification and product description at any time without notice. Change Log Issue Date Change A /07/25 Draft - iv -

5 TABLE OF CONTENTS 1 OVERVIEW INTEGRATING HOSTAP DRIVER ON UCLINUX MODIFY SOURCE CODE ADD TO UCLINUX PACKAGE AS A KERNEL IMAGE ADD TO PCMCIA PACKAGE BUILD START AP IWCONFIG

6 1 Overview There are many open source projects for supporting Wireless LAN in Linux. Currently, the most of b chipset is supported. Wireless Extension is also developed for the configuration of WLAN environment. Generally, b chipsets support only Station (STA) mode or only Access Point (AP) mode. Prism chipset of Intersil is the only one supporting the both mode at same chipset. There are three open source projects for supporting AP using the Prism chip. linux-wlan-ng project ( is the official open source project supported by Intersil. It needs a AP firmware Buy AP development kit from AbsoluteValue Systems or Buy reference board from Intersil. HostAP driver ( doesn t need any special firmware. This is a Linux driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset. The driver supports a so-called Host AP mode, i.e., it takes care of IEEE management functions in the host computer and acts as an AP. This does not require any special firmware for the wireless LAN card. In addition to this, it has support for normal station operations in BSS and possible also in IBSS. Intersil's station firmware for Prism2 chipset supports also called Host AP mode in which the firmware takes care of time critical tasks like beacon sending and frame acknowledging, but leaves other management tasks to host computer driver. This driver implements basic functionality needed to initialize and configure Prism2-based cards, to send and receive frames, and to gather statistics. In addition, it includes an implementation of following IEEE functions: authentication (and deauthentication), association (reassociation, and disassociation), data transmission between two wireless stations, power saving (PS) mode signaling and frame buffering for PS stations. The driver has also various features for development debugging and for researching IEEE environments like access to hardware configuration records, I/O registers, and frames with headers. Open AP project ( is the project for a complete product, not only driver. It uses HostAP driver for support AP. It also includes many other S/W modules for AP, Bridge, roaming, shell, telnet, boa and so on. It s form of kernel patch. To implement AP using NBP1100, we will HostAP driver on uclinux. Reference Site: Wireless resources for Linux

7 2 Integrating HostAP driver on uclinux Required resource: uclinux-dist-for_nbp1100 (include nbp1100 PCMCIA package) hostap tar.gz ( 2.1 Modify source code (HOSTAP_DIR)/driver/modules/hostap_hw.c: line 3948 local->bus_m1_buf = (u8 *) kmalloc(prism2_data_maxlen, GFP_KERNEL); 2.2 Add to uclinux package as a kernel image copy (HOSTAP_DIR)/driver/module/* to (UCLINUX_DIR)/linux-2.4.x/drivers/net/wireless/ modify (UCLINUX_DIR)/linux-2.4.x/drivers/net/wireless/Config.in tristate ' Hermes chipset b support (Orinoco/Prism2/Symbol)' CONFIG_HERMES tristate ' Host AP support for Prism2/2.5/3 IEEE b' CONFIG_HOSTAP dep_tristate ' Hermes PCMCIA card support' CONFIG_PCMCIA_HERMES $CONFIG_HERMES dep_tristate ' Host AP driver for Prism2/2.5/3 PC Cards' CONFIG_HOSTAP_CS $CONFIG_HOSTAP $CONFIG_PCMCIA modify (UCLINUX_DIR)/linux-2.4.x/drivers/net/wireless/Makefile export-objs := airo.o orinoco.o hermes.o hostap.o hostap_crypt.o obj-$(config_airo_cs) += airo_cs.o airo.o obj-$(config_hostap) += hostap.o hostap_crypt.o hostap_crypt_wep.o obj-$(config_hostap_cs) += hostap_cs.o 2.3 Add to PCMCIA package modify (UCLINUX_DIR)/linux-2.4.x/drivers/pcmcia/ds.c init_pcmcia_ds() -> #ifdef CONFIG_PROC_FS if (proc_pccard) create_proc_read_entry("drivers",0,proc_pccard,proc_read_drivers,null); init_status = 0; #endif { int sock = 0; bind_info_t bind_info; adjust_t adjust; adjust.resource = RES_IO_RANGE; adjust.resource.io.baseport = 0xa ; adjust.resource.io.numports = 0xffff; adjust.action = ADD_MANAGED_RESOURCE; 3-3 -

8 pcmcia_adjust_resource_info(socket_table_ds[sock].handle, &adjust); adjust.resource = RES_MEMORY_RANGE; adjust.resource.memory.base = 0xa ; adjust.resource.memory.size = 0x ; adjust.action = ADD_MANAGED_RESOURCE; pcmcia_adjust_resource_info(socket_table_ds[sock].handle, &adjust); strcpy(bind_info.dev_info, "hostap_cs"); strcpy(bind_info.name, "hostap_cs"); bind_info.function = 0; bind_info.next = 0; if ( bind_request(sock, &bind_info)!=0) { printk("hostap_cs: Card Services release " "does not match!\n"); } } 4-4 -

9 3 Build make xconfig select kerneloption->network device->wireless (non-harm radio) -> hostap support / hostap driver make lib_only make user_only make romfs copy (HOSTAP_DIR)/driver/etc/hostap_cs.conf -> (UCLINUX_DIR)/romfs/etc/pcmcia/ make image make 5-5 -

10 4 Start AP Required Compenent: PCMCIA support (by yonglee) HostAP support/hostap driver iwconfig iwpriv Note: Make sure that NBP1100 is in PC-CARD mode, not in CARD-BUS mode. Start AP: ifconfig wlan up iwconfig wlan0 essid= ANY_ESSID You can adjust options for WLAN using Wireless Extension utilities for Linux, iwconfig, iwspy, iwpriv and so on. For more usage, refer (HOSTAP_DIR)/README.prism2 4.1 iwconfig Usage: iwconfig interface [essid {NN on off}] /* ESS ID */ [nwid {NN on off}] /* BSS ID */ [freq N.NNNN[k M G]] [channel N] [sens N] /* signal level threshold for reception */ [nick N] [rate {N auto fixed}] [rts {N auto fixed off}] [frag {N auto fixed off}] [enc NNNN-NNNN] /* encryption key */ [power { period N timeout N}] [txpower N {mw dbm}] 6-6 -

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. SNMP Working Guide. Hynix Semiconductor Inc. Version 0.1

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. SNMP Working Guide. Hynix Semiconductor Inc. Version 0.1 Multipurpose Network Processor uclinux Developer Guide SNMP Working Guide Version 0.1 Hynix Semiconductor Inc. - ii - Copyright. 2002 Hynix Semiconductor Inc. ALL RIGHTS RESERVED. No part of this publication

More information

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. Interrupt Controller Guide. MagnaChip Semiconductor Ltd. Version 0.

HMS30C7110. uclinux Developer Guide. Multipurpose Network Processor. Interrupt Controller Guide. MagnaChip Semiconductor Ltd. Version 0. Multipurpose Network Processor uclinux Developer Guide Interrupt Controller Guide Version 0.1 MagnaChip Semiconductor Ltd. Copyright. 2004 MagnaChip Semiconductor Ltd. - ii - ALL RIGHTS RESERVED. No part

More information

BLUEGIGA WF111 SOFTWARE DRIVERS

BLUEGIGA WF111 SOFTWARE DRIVERS BLUEGIGA WF111 SOFTWARE DRIVERS RELEASE NOTES Thursday, 2 February 2017 Version 5.2.2-r3 Copyright Silicon Labs All rights reserved. Silicon Labs assumes no liability or responsibility for any errors,

More information

Basic processes in IEEE networks

Basic processes in IEEE networks Module contents IEEE 802.11 Terminology IEEE 802.11 MAC Frames Basic processes in IEEE802.11 networks Configuration parameters IEEE 802.11 Terminology Station (STA) Architecture: Device that contains IEEE

More information

Bluegiga WF111 Software Driver Release Notes

Bluegiga WF111 Software Driver Release Notes Bluegiga WF111 Software Driver Release Notes This document contains details about changes between WF111 Software Driver releases starting with the latest officially released driver. KEY POINTS : 5.2.2-r4

More information

PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144)

PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144) PrimeCell Infrastructure AMBA 3 AXI File Reader Master (BP144) Revision: r0p0 Technical Overview Copyright 2004 ARM Limited. All rights reserved. DTO0016A PrimeCell Infrastructure AMBA 3 AXI File Reader

More information

Wireless Extensions for Linux

Wireless Extensions for Linux Wireless Extensions for Linux Jean Tourrilhes 23 January 97 A Wireless LAN API for the Linux operating system. 1 Introduction The purpose of this document is to give an overview of the Wireless Extensions.

More information

AMBA Peripheral Bus Controller

AMBA Peripheral Bus Controller Data Sheet Copyright 1997 Advanced RISC Machines Ltd (ARM). All rights reserved. ARM DDI 0044C Data Sheet Copyright 1997 Advanced RISC Machines Ltd (ARM). All rights reserved. Release Information Issue

More information

AMBA. Reset Controller ARM. Data Sheet. Open Access

AMBA. Reset Controller ARM. Data Sheet. Open Access AMBA Reset Controller Data Sheet Document Number: Issued: April 1997 Copyright Advanced RISC Machines Ltd (ARM) 1997 All rights reserved ENGLAND Advanced RISC Machines Limited 90 Fulbourn Road Cherry Hinton

More information

SMART CELL RELEASE NOTE

SMART CELL RELEASE NOTE Teletronics International Inc. SMART CELL Release Notes SMART CELL RELEASE NOTE 1. Deliverables 1.1 Software Teletronics Smart Cell CPE Binary File 1.2 Software Features ESSID Broadcast Invisible, Intra

More information

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID1356 User Manual All boards produced by Olimex are ROHS compliant Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID1356 is an RFID station, able

More information

PePWave Mesh Connector User Manual

PePWave Mesh Connector User Manual PePWave Mesh Connector User Manual Document Rev. 1.0 Jun-07 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice. Copyright 1999-2007 PePWave Ltd. All Rights Reserved. PePWave and

More information

Table of Contents 1 WLAN Service Configuration 1-1

Table of Contents 1 WLAN Service Configuration 1-1 Table of Contents 1 WLAN Service Configuration 1-1 WLAN Service Overview 1-1 Terminology 1-1 Wireless Client Access 1-2 802.11 Overview 1-4 WLAN Topologies 1-5 Single BSS 1-5 Multi-ESS 1-5 Single ESS Multiple

More information

XAVi Technologies Corporation Tel: Fax: F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan

XAVi Technologies Corporation Tel: Fax: F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan XAVi Technologies Corporation Tel: +886-2-2995-7953 Fax: +886-2-29957954 9F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan Copyright 2005, XAVi Technologies Corporation Information in

More information

CSNT 180 Wireless Networking. Chapter 7 WLAN Terminology and Technology

CSNT 180 Wireless Networking. Chapter 7 WLAN Terminology and Technology CSNT 180 Wireless Networking Chapter 7 WLAN Terminology and Technology Norman McEntire norman.mcentire@servin.com Founder, Servin Corporation, http://servin.com Technology Training for Technology Professionals

More information

AMBA Remap and Pause. Technical Reference Manual. Revision: r0p0. Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC

AMBA Remap and Pause. Technical Reference Manual. Revision: r0p0. Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC Revision: r0p0 Technical Reference Manual Copyright 1997 ARM Limited. All rights reserved. ARM DDI 0048AC Technical Reference Manual Copyright 1997 ARM Limited. All rights reserved. Release Information

More information

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID125 User Manual All boards produced by Olimex are ROHS compliant Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID125 is an RFID station,

More information

MOD-RFID125-BOX User Manual

MOD-RFID125-BOX User Manual MOD-RFID125-BOX User Manual All boards produced by Olimex are ROHS compliant Rev.B, May 2011 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: FEATURES: MOD-RFID125-BOX is an RFID

More information

JetBox 95xx/ 93xx Linux Auto Run Function

JetBox 95xx/ 93xx Linux Auto Run Function JetBox 95xx/ 93xx Linux Auto Run Function User Manual www.korenix.com 0.0.9 Copyright Notice Copyright 2009 Korenix Technology Co., Ltd. All rights reserved. Reproduction without permission is prohibited.

More information

MOD-MRF24J40 development board Users Manual

MOD-MRF24J40 development board Users Manual MOD-MRF24J40 development board Users Manual All boards produced by Olimex are ROHS compliant Rev. Initial, May 2011 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: MOD-MRF24J40

More information

Wireless Router at Home

Wireless Router at Home Wireless Router at Home 192.168.1.2 192.168.1.1 Modem 192.168.1.3 120.6.46.15 telephone line to ISP 192.168.1.4 Internet connection with public IP internal LAN with private IPs 192.168.1.5 Wireless All-in-one

More information

Wireless Bridge User Manual. Version 1.0

Wireless Bridge User Manual. Version 1.0 Wireless Bridge 520645 User Manual Version 1.0 FCC Radiation Exposure Statement This equipment complies with FCC radiation exposure limits set forth for an uncontrolled environment. This equipment should

More information

Field Verified. Configuration Guide. Proxim ORiNOCO. AP-600b, AP-600g, AP-700, AP-2000, AP January 2008 Edition Version H

Field Verified. Configuration Guide. Proxim ORiNOCO. AP-600b, AP-600g, AP-700, AP-2000, AP January 2008 Edition Version H Proxim ORiNOCO AP-600b, AP-600g, AP-700, AP-2000, AP-4000 January 2008 Edition 1725-36050-001 Version H Trademark Information Polycom and the logo designs SpectraLink LinkPlus Link NetLink SVP Are trademarks

More information

Institute of Electrical and Electronics Engineers (IEEE) IEEE standards

Institute of Electrical and Electronics Engineers (IEEE) IEEE standards HW Institute of Electrical and Electronics Engineers (IEEE) IEEE 802.11 standards WLAN Standard (IEEE 802.11) The IEEE 802.11 is a family of standards that governs the operations and functions of WLANs.

More information

Light Mesh AP. User s Guide. 2009/2/20 v1.0 draft

Light Mesh AP. User s Guide. 2009/2/20 v1.0 draft Light Mesh AP User s Guide 2009/2/20 v1.0 draft i FCC Certifications This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules.

More information

ARMv8-A Synchronization primitives. primitives. Version 0.1. Version 1.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved.

ARMv8-A Synchronization primitives. primitives. Version 0.1. Version 1.0. Copyright 2017 ARM Limited or its affiliates. All rights reserved. Connect ARMv8-A User Synchronization Guide primitives Version 0.1 Version 1.0 Page 1 of 9 Revision Information The following revisions have been made to this User Guide. Date Issue Confidentiality Change

More information

Tutorial: Simple WEP Crack

Tutorial: Simple WEP Crack Tutorial: Simple WEP Crack Version: 1.20 January 11, 2010 By: darkaudax Introduction This tutorial walks you though a very simple case to crack a WEP key. It is intended to build your basic skills and

More information

Wireless LAN USB Stick AWL400. User Manual. Version 1.1 June BENQ Corporation

Wireless LAN USB Stick AWL400. User Manual. Version 1.1 June BENQ Corporation Wireless LAN USB Stick AWL400 User Manual Version 1.1 June 2002 Notice I Copyright Statement This manual cannot be reproduced in any form or by any means or used to make any derivative such as translation,

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.  Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : PW0-205 Title : Certified wireless analusis professional(cwap) Vendors : CWNP Version : DEMO Get Latest

More information

Complexity. An introduction to protocol chaos. Andrés Blanco. CC License - Swtiruty Rgbytw

Complexity. An introduction to protocol chaos. Andrés Blanco.   CC License - Swtiruty Rgbytw 802.11 Complexity An introduction to 802.11 protocol chaos Andrés Blanco Email: 6e726d@gmail.com Twitter: @6e726d CC License - Swtiruty Rgbytw Motivation 802.11 it s everywhere https://twitter.com/skrud/status/767243097331736578

More information

802.11g PC Card/USB Wireless Adapter

802.11g PC Card/USB Wireless Adapter 802.11g PC Card/USB Wireless Adapter User Guide Regulatory Approvals FCC Statement This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of

More information

PIC-P28-USB development board Users Manual

PIC-P28-USB development board Users Manual PIC-P28-USB development board Users Manual Rev.A, June 2007 Copyright(c) 2007, OLIMEX Ltd, All rights reserved INTRODUCTION: PIC-P28-USB board was designed in mind to create board which to allow easy interface

More information

LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter

LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter V2.0.0-0712 i Safety FCC WARNING This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to

More information

Field Verified. Configuration Guide. Extricom. Interference-Free Wireless LAN System. January 2008 Edition Version B

Field Verified. Configuration Guide. Extricom. Interference-Free Wireless LAN System. January 2008 Edition Version B Extricom Interference-Free Wireless LAN System January 2008 Edition 1725-36163-001 Version B Trademark Information Polycom and the logo designs SpectraLink LinkPlus Link NetLink SVP Are trademarks and

More information

Wireless LANs. ITS 413 Internet Technologies and Applications

Wireless LANs. ITS 413 Internet Technologies and Applications Wireless LANs ITS 413 Internet Technologies and Applications Aim: Aim and Contents Understand how IEEE 802.11 wireless LANs work Understand what influences the performance of wireless LANs Contents: IEEE

More information

EOC Wireless a/b/g Outdoor AP 2.4GHz / 5GHz 54Mbps a/b/g 24V PoE

EOC Wireless a/b/g Outdoor AP 2.4GHz / 5GHz 54Mbps a/b/g 24V PoE Wireless 802.11 a/b/g Outdoor AP 2.4 / 5 54Mbps 802.11 a/b/g 24V PoE EOC 5610 EOC 5610 is a long range outdoor wireless Access Point / Client Bridge that operates in both 5 and 2.4 frequency. It provides

More information

Wireless Networking. Dennis Rex SCALE 3X

Wireless Networking. Dennis Rex SCALE 3X Wireless Networking For Beginners Dennis Rex SCALE 3X - 2005 Agenda Wireless Choices 802.11A, B, G Devices - USB, PCI, PCMCIA, bridges Wireless chipsets - the good, the bad, the ugly Finding and installing

More information

EOC GHz / 5GHz 54Mbps a/b/g 24V PoE

EOC GHz / 5GHz 54Mbps a/b/g 24V PoE Wireless 11a/b/g Outdoor Device EOC-5610 2.4 / 5 54Mbps 802.11a/b/g 24V PoE EOC 5610 is a long range outdoor wireless Access Point / Client Bridge that operates seamlessly in both 5 and 2.4 frequency.

More information

CSCD 433/533 Advanced Networking

CSCD 433/533 Advanced Networking CSCD 433/533 Advanced Networking Lecture 6 Wireless LAN Components and Characteristics Winter 2017 Some Material in these slides from J.F Kurose and K.W. Ross All material copyright 1996-2007 1 Introduction

More information

GRE AMERICA, INC. Wireless LAN USB Client Instllation

GRE AMERICA, INC. Wireless LAN USB Client Instllation GRE AMERICA, INC Wireless LAN USB Client Instllation Table of Contents FCC Warning Information Chapter 1 Introduction Package Contents 1 System Requirement 1 Features 1 Chapter 2 Installing Application

More information

Princess Nora Bint Abdulrahman University College of computer and information sciences Networks department Networks Security (NET 536)

Princess Nora Bint Abdulrahman University College of computer and information sciences Networks department Networks Security (NET 536) Princess Nora Bint Abdulrahman University College of computer and information sciences Networks department Networks Security (NET 536) Prepared by Dr. Samia Chelloug E-mail: samia_chelloug@yahoo.fr Content

More information

CE MARK WARNING LIMITED WARRANTY

CE MARK WARNING LIMITED WARRANTY CE MARK WARNING This is a Class B product. In a domestic environment, this product may cause radio interference, in which case the user may be required to take adequate measures. LIMITED WARRANTY Hawking

More information

WLAN The Wireless Local Area Network Consortium

WLAN The Wireless Local Area Network Consortium WLAN The Wireless Local Area Network Consortium 802.11 Base AP MAC Layer Test Suite Version 3.5 Technical Document Last Updated: February 18, 2012 Wireless LAN Consortium 121 Technology Drive, Suite 2

More information

APC-100. IEEE g Wireless USB Adapter. User s Guide v1.0

APC-100. IEEE g Wireless USB Adapter. User s Guide v1.0 APC-100 IEEE 802.11g Wireless USB Adapter User s Guide v1.0 FCC Certifications Federal Communication Commission Interference Statement This equipment has been tested and found to comply with the limits

More information

ECE 435 Network Engineering Lecture 8

ECE 435 Network Engineering Lecture 8 ECE 435 Network Engineering Lecture 8 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 26 September 2016 HW#3 was posted Announcements note the warnings you were getting on toupper()

More information

WLAN The Wireless Local Area Network Consortium

WLAN The Wireless Local Area Network Consortium WLAN The Wireless Local Area Network Consortium 802.11 Base Station MAC Layer Test Suite Version 3.2 Technical Document Last Updated: November 25, 2008 Wireless LAN Consortium 121 Technology Drive, Suite

More information

MOD-BT development board Users Manual

MOD-BT development board Users Manual MOD-BT development board Users Manual All boards produced by Olimex are ROHS compliant Rev. B, September 2009 Copyright(c) 2010, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION BOARD FEATURES MOD-BT

More information

Guide to Wireless Communications, Third Edition. Objectives

Guide to Wireless Communications, Third Edition. Objectives Guide to Wireless Communications, Third Edition Chapter 7 Low-Speed Wireless Local Area Networks Objectives Describe how WLANs are used List the components and modes of a WLAN Describe how an RF WLAN works

More information

VIEW Configuration Guide. Cisco. 1131, 1232 and 1242 Autonomous APs. June 2010 Edition Version D

VIEW Configuration Guide. Cisco. 1131, 1232 and 1242 Autonomous APs. June 2010 Edition Version D VIEW Configuration Guide Cisco 1131, 1232 and 1242 Autonomous APs June 2010 Edition 1725-36193-001 Version D Configuration Guide Patent Information The accompanying product is protected by one or more

More information

Technical Reference Guide

Technical Reference Guide ios Bluetooth TM Printer Technical Reference Guide Part Names and Functions Describes the buttons and LEDs of interface board. Connecting to ios Devices Describes how to connect ios devices. Application

More information

Mali Offline Compiler User Guide

Mali Offline Compiler User Guide Mali Offline Compiler 6.0.0 User Guide ARM Limited 2017 Introduction 2 Contents 3 Contents Chapter 1: Introduction... 5 Overview... 6 Installation Package... 6 This Release...6 Chapter 2: Installation...

More information

BLE232: Manual Copyright 2014 taskit GmbH

BLE232: Manual Copyright 2014 taskit GmbH BLE232 Manual BLE232: Manual Copyright 2014 taskit GmbH BLE232 All rights to this documentation and to the product(s) described herein are reserved by taskit GmbH. This document was written with care,

More information

Optional Point Coordination Function (PCF)

Optional Point Coordination Function (PCF) Optional Point Coordination Function (PCF) Time Bounded / Async Contention Free Service PCF Optional DCF (CSMA/CA ) Async Contention Service MAC PHY Contention Free Service uses Point Coordination Function

More information

Version:1.5 Date:1/25/2002

Version:1.5 Date:1/25/2002 WIRELESS Mini Size USB ADAPTER Version:1.5 Date:1/25/2002 Federal Communications Commission Statement This device complies with FCC Rules Part 15. Operation is subject to the following two conditions:

More information

11Mbps High Speed Wireless LAN PC Card

11Mbps High Speed Wireless LAN PC Card 11Mbps High Speed Wireless LAN PC Card Date of Issue: Jan. 16th, 2002 Technical Support The firmware version of the 11Mbps Wireless LAN PC Card is displayed on the utility main window. Users could download

More information

AVR-P20 development board Users Manual

AVR-P20 development board Users Manual AVR-P20 development board Users Manual All boards produced by Olimex are ROHS compliant Revision A, October 2005 Copyright(c) 2009, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: The AVR Microcontrollers

More information

Content. Chapter 1 Product Introduction Package Contents Product Features Product Usage... 2

Content. Chapter 1 Product Introduction Package Contents Product Features Product Usage... 2 Content Chapter 1 Product Introduction... 2 1.1 Package Contents... 2 1.2 Product Features... 2 1.3 Product Usage... 2 1.4 Before Installation... 2 1.5 Disable other manufacturers wireless network adapters...

More information

Trace Debug Tools Version 1.2 Installation Guide

Trace Debug Tools Version 1.2 Installation Guide Trace Debug Tools Version 1.2 Installation Guide Copyright 2000-2002 ARM Limited. All rights reserved. Proprietary Notice Words and logos marked with or are registered trademarks or trademarks owned by

More information

CAN4VSCP - RS232. Smart CAN4VSCP serial interface. Reversion

CAN4VSCP - RS232. Smart CAN4VSCP serial interface. Reversion CAN4VSCP - RS232 Smart CAN4VSCP serial interface Reversion 1.0-2014-02-28 Abstract CAN4VSCP-RS22 is a very simple interface module for connecting a computers RS-232 interface to the VSCP CAN bus. The module

More information

VIEW Certified Configuration Guide. Motorola. WS 2000 with AP 300. January 2008 Edition Version C

VIEW Certified Configuration Guide. Motorola. WS 2000 with AP 300. January 2008 Edition Version C VIEW Certified Configuration Guide Motorola WS 2000 with AP 300 January 2008 Edition 1725-36066-001 Version C 1 Configuration Guide Trademark Information Polycom and the logo designs SpectraLink LinkPlus

More information

Wireless Module bgn & Bluetooth WYSBCVGXA & WBSBCVGXA-1 Overview. August 19, 2013 Version 2.0

Wireless Module bgn & Bluetooth WYSBCVGXA & WBSBCVGXA-1 Overview. August 19, 2013 Version 2.0 Wireless Module 802.11bgn & Bluetooth WYSBCVGXA & WBSBCVGXA-1 Overview August 19, 2013 Version 2.0 WYSBCVGXA Wireless Module: 802.11bgn & Bluetooth Features IEEE802.11b/g/n standard conformity, BT3.0,

More information

OSBRiDGE 24XL(i) Configuration Manual. Firmware 2.05b9

OSBRiDGE 24XL(i) Configuration Manual. Firmware 2.05b9 OSBRiDGE 24XL(i) Configuration Manual Firmware 2.05b9 1. Initial setup and configuration. OSBRiDGE 24XL devices are configurable via WWW interface. Each device uses following default settings: IP: 192.168.1.250

More information

Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.:

Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.: Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.: 524728 Wireless networking with three times the speed and five times the flexibility. The INTELLINET NETWORK

More information

802.11b/g Access Point WL-8000AP

802.11b/g Access Point WL-8000AP 802.11b/g Access Point WL-8000AP User s Guide - FCC Certifications This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules.

More information

FCC Warning statement:

FCC Warning statement: FCC Warning statement: This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to part 15 of the FCC rules. These limits are designed to provide reasonable

More information

Reducing MAC Layer Handoff Latency in IEEE Wireless LANs

Reducing MAC Layer Handoff Latency in IEEE Wireless LANs Reducing MAC Layer Handoff Latency in IEEE 80211 Wireless LANs Sangho Shin Andrea G Forte Columbia University {ss2020,andreaf}@cscolumbiaedu Anshuman Singh Rawat New York University asr245@nyuedu Henning

More information

EOC2611P. Long Range Wireless Access Point / Client Bridge PRODUCT DESCRIPTION. 2.4GHz 108Mbps b/g/super G MSSID, WDS

EOC2611P. Long Range Wireless Access Point / Client Bridge PRODUCT DESCRIPTION. 2.4GHz 108Mbps b/g/super G MSSID, WDS Long Range Wireless Access Point / Client Bridge 2.4GHz 108Mbps 802.11 b/g/super G MSSID, WDS PRODUCT DESCRIPTION is a long range outdoor wireless Access Point / Client Bridge that operates seamlessly

More information

CHANGING THE MODES OF MOD-WIFI-ESP8266-DEV

CHANGING THE MODES OF MOD-WIFI-ESP8266-DEV CHANGING THE MODES OF MOD-WIFI-ESP8266-DEV REFERENCE Revision B, March 2018 Designed by OLIMEX Ltd, 2014 All boards produced by Olimex LTD are ROHS compliant DISCLAIMER 2018 Olimex Ltd. Olimex, logo and

More information

An experimental study of IEEE b handover performance and its effect on voice traffic

An experimental study of IEEE b handover performance and its effect on voice traffic An experimental study of IEEE 802.11b handover performance and its effect on voice traffic Jon-Olov Vatn July 2003 TRITA-IMIT-TSLAB R 03:01 ISSN 1651-7709 ISRN KTH/IMIT/TSLAB/R-03/01--SE Telecommunication

More information

Wireless Cable Modem. User's Manual

Wireless Cable Modem. User's Manual Wireless Cable Modem User's Manual Copyright Copyright 2001 This Company. All Rights Reserved. SPECIFICATIONS AND INFORMATION CONTAINED IN THIS DOCUUMENT ARE FURNISHED FOR INFORMATIONAL USE ONLY, AND ARE

More information

Introduction. High Speed LANs. Emergence of High-Speed LANs. Characteristics of High Speed LANS. Text ch. 6, High-Speed Networks and

Introduction. High Speed LANs. Emergence of High-Speed LANs. Characteristics of High Speed LANS. Text ch. 6, High-Speed Networks and High Speed LANs 3BA33 David Lewis 2 nd Semester 2006-07 3BA33 D.Lewis 2007 1 Characteristics of High Speed LANS 3BA33 D.Lewis 2007 3 Introduction Fast Ethernet and Gigabit Ethernet Fibre Channel High-speed

More information

Wireless Module bgn, Bluetooth & FM WYSBMVGX8 & WBSBMVGX8-1 Overview. March 18, 2013 Version 1.0

Wireless Module bgn, Bluetooth & FM WYSBMVGX8 & WBSBMVGX8-1 Overview. March 18, 2013 Version 1.0 Wireless Module 802.11bgn, Bluetooth & FM WYSBMVGX8 & WBSBMVGX8-1 Overview March 18, 2013 Version 1.0 WYSBMVGX8 Wireless Module: 802.11bgn, Bluetooth & FM Features IEEE802.11b/g/n standard conformity,

More information

WNC-0300USB. 11g Wireless USB Adapter USER MANUAL

WNC-0300USB. 11g Wireless USB Adapter USER MANUAL WNC-0300USB 11g Wireless USB Adapter USER MANUAL Contents 1. Introduction...3 1.1 Product Feature...3 1.2 System Requirement...3 2. Getting Start...3 2.1 LED Indicators...3 2.2 Install the 54Mbps Wireless

More information

MP-954GPS. User s Manual. Edition /10/23

MP-954GPS. User s Manual. Edition /10/23 MP-954GPS User s Manual Edition 1.1 2009/10/23 Copyright Copyright 2009 all rights reserved. This document is copyrighted and all rights are reserved. The information in this document is subject to change

More information

VIEW Certified Configuration Guide. Hewlett-Packard. HP ProCurve Wireless Edge Services zl Module. January 2008 Edition Version C

VIEW Certified Configuration Guide. Hewlett-Packard. HP ProCurve Wireless Edge Services zl Module. January 2008 Edition Version C VIEW Certified Configuration Guide Hewlett-Packard HP ProCurve Wireless Edge Services zl Module January 2008 Edition 1725-36056-001 Version C Configuration Guide Trademark Information Polycom and the logo

More information

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912)

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912) Mali Offline Shader Compiler Version: 3.0 User Guide Copyright 2009-2012 ARM. All rights reserved. ARM DUI 0513B () Mali Offline Shader Compiler User Guide Copyright 2009-2012 ARM. All rights reserved.

More information

Functions of physical layer:

Functions of physical layer: Chapter 14 Functions of physical layer: Encoding/decoding of signals Preamble generation/removal (for synchronization) Bit transmission/reception Includes specification of the transmission medium Functions

More information

UNIBOX. An Intelligent Network Controller. Knowledge Base: Billing Module

UNIBOX. An Intelligent Network Controller. Knowledge Base: Billing Module UNIBOX An Intelligent Network Controller Knowledge Base: Billing Module Copyright 2013 Wifi-soft Solutions Pvt. Ltd. All rights reserved. The information contained herein is subject to change without notice.

More information

802.11g. Wireless LAN Card

802.11g. Wireless LAN Card 802.11g Wireless LAN Card LCS-8031G Quick Installation Guide M73-LGS01-030 INSTALLATION Caution: Do not insert the Wireless PC Card into your computer until the procedures in Install the Driver & Utility

More information

WAP-A58. Outdoor Multi function Access Point CPE Router. with built-in high power 5.8GHz a Radio (Integrated 16dBi patch Antenna).

WAP-A58. Outdoor Multi function Access Point CPE Router. with built-in high power 5.8GHz a Radio (Integrated 16dBi patch Antenna). WAP-A58 Wireless Outdoor Multi function Access Point CPE Router with built-in high power 5.8GHz 802.11a Radio (Integrated 16dBi patch Antenna). Benefits Access Point with built-in high power 802.11a Radio.

More information

Wireless Module abgn, Wide Temperature WYSBMVGX4-I & WBSBMVGX4-I Overview. March 18, 2013 Version 1.0

Wireless Module abgn, Wide Temperature WYSBMVGX4-I & WBSBMVGX4-I Overview. March 18, 2013 Version 1.0 Wireless Module 802.11abgn, Wide Temperature WYSBMVGX4-I & WBSBMVGX4-I Overview March 18, 2013 Version 1.0 WYSBMVGX4-I Wireless Module: 802.11abgn Wide Temperature Features IEEE802.11a/b/g/n standard conformity

More information

Wireless Communication and Networking CMPT 371

Wireless Communication and Networking CMPT 371 Wireless Communication and Networking CMPT 371 Wireless Systems: AM, FM Radio TV Broadcast Satellite Broadcast 2-way Radios Cordless Phones Satellite Links Mobile Telephony Systems Wireless Local Loop

More information

3.1. Introduction to WLAN IEEE

3.1. Introduction to WLAN IEEE 3.1. Introduction to WLAN IEEE 802.11 WCOM, WLAN, 1 References [1] J. Schiller, Mobile Communications, 2nd Ed., Pearson, 2003. [2] Martin Sauter, "From GSM to LTE", chapter 6, Wiley, 2011. [3] wiki to

More information

USER MANUAL USB Bluetooth Adapter

USER MANUAL USB Bluetooth Adapter USER MANUAL USB Bluetooth Adapter UBT-120 CONTENT 1. Introduction--------------------------------------------------------------------------------- 2 2. Package Content-------------------------------------------------------------------------

More information

Wireless g AP. User s Manual

Wireless g AP. User s Manual Wireless 802.11g AP User s Manual Version 1.8 User s Guide 0 Copyright Statement No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means,

More information

Tunneling Configuration Guide for Enterprise

Tunneling Configuration Guide for Enterprise Tunneling Configuration Guide for Enterprise Tech Note Version 1.0 Table of Contents Introduction... 3 Tunneling Options... 4 Why use tunneling... 4 Tunnel types... 4 Ruckus GRE... 4 Soft-GRE... 5 Tunneling

More information

Wireless LAN PC Card AWL-100. User Manual. Version 1.1 June BENQ Corporation

Wireless LAN PC Card AWL-100. User Manual. Version 1.1 June BENQ Corporation Wireless LAN PC Card AWL-100 User Manual Version 1.1 June 2002 i Notice I Copyright Statement This manual cannot be reproduced in any form or by any means or used to make any derivative such as translation,

More information

Chapter 1 Introduction

Chapter 1 Introduction Copyright Statement is the registered trademark of Zonet Technology Inc. All the products and product names mentioned herein are the trademarks or registered trademarks of their respective holders. Copyright

More information

ABHELSINKI UNIVERSITY OF TECHNOLOGY

ABHELSINKI UNIVERSITY OF TECHNOLOGY cm. Management Operations of the IEEE 802.11 Mei Yen Cheong meiyen.cheong@hut.fi S-72.333 Postgraduate Seminar on Radio Communications Helsinki University of Technology April 13, 2004 Management Operations

More information

WIRELESS LANS. By: M. Habibullah Pagarkar Mandar Gori Rajesh Jaiswal

WIRELESS LANS. By: M. Habibullah Pagarkar Mandar Gori Rajesh Jaiswal WIRELESS LANS By: M. Habibullah Pagarkar Mandar Gori Rajesh Jaiswal Introduction Why wireless? World will become fully mobile Increase in wireless devices usage Wireless will succeed; integrates into many

More information

Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release WAP9114 Release 8.1.0

Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release WAP9114 Release 8.1.0 WLAN 9100 Release Notes Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release 8.1.0 WAP9114 Release 8.1.0 Avaya Inc - External Distribution 1. Introduction This document provides

More information

High Power g Wireless USB Adapter USER MANUAL 1.0.0

High Power g Wireless USB Adapter USER MANUAL 1.0.0 High Power 802.11g Wireless USB Adapter USER MANUAL 1.0.0 2009 Table of Contents Chapter I USING THIS DOCUMENT 3 Chapter II INTRODUCTION 3 Chapter III SYSTEM REQUIREMENTS 3 Chapter IV Driver Installation

More information

IEEE g Wireless PC Card. User s Guide

IEEE g Wireless PC Card. User s Guide IEEE 802.11g Wireless PC Card User s Guide FCC Certifications Federal Communication Commission Interference Statement This equipment has been tested and found to comply with the limits for a Class B digital

More information

IEEE b Wireless LAN PC Card

IEEE b Wireless LAN PC Card IEEE 802.11b Wireless LAN PC Card User s Guide Version 5.0 REGULATION INFORMATION The WLAN PC Card must be installed and used in strict accordance with the manufacturer s instructions. This device complies

More information

ARM. Streamline. Performance Analyzer. Using ARM Streamline. Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A (ID100210)

ARM. Streamline. Performance Analyzer. Using ARM Streamline. Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A (ID100210) ARM Streamline Performance Analyzer Using ARM Streamline Copyright 2010 ARM Limited. All rights reserved. ARM DUI 0482A () ARM Streamline Performance Analyzer Using ARM Streamline Copyright 2010 ARM Limited.

More information

Wireless LAN Adapter

Wireless LAN Adapter ANSEL Wireless LAN Adapter 2302-wl360r User s Guide Version 1.1 08/04/2003 User s Guide 0 Copyright statement No part of this publication may be reproduced, stored in a retrieval system, or transmitted

More information

ARM Cortex processors

ARM Cortex processors ARM Cortex processors The world s most power efficient processors Performance and scalability for enterprise, mobile and embedded solutions May 2017 ARM Cortex-A portfolio ARMv7-A Cortex-A15/A17 Infrastructure

More information

Wireless technology Principles of Security

Wireless technology Principles of Security Wireless technology Principles of Security 1 Wireless technologies 2 Overview This module provides an introduction to the rapidly evolving technology of wireless LANs (WLANs). WLANs redefine the way the

More information

WL5020i WLAN Cardbus Adapter User s Manual Version 1.0 TECOM CO., LTD. March by TECOM CO., LTD. All rights reserved.

WL5020i WLAN Cardbus Adapter User s Manual Version 1.0 TECOM CO., LTD. March by TECOM CO., LTD. All rights reserved. WL5020i WLAN Cardbus Adapter User s Manual Version 1.0 TECOM CO., LTD. March 2003 2003 by TECOM CO., LTD. All rights reserved. Printed in Taiwan Table of Contents Package Contents and Trademark(s)---------------------

More information

Wireless Networks. Lecture 4: Wireless Networking Devices. Assistant Teacher Samraa Adnan Al-Asadi 1

Wireless Networks. Lecture 4: Wireless Networking Devices. Assistant Teacher Samraa Adnan Al-Asadi 1 Wireless Networks Lecture 4: Wireless Networking Devices Assistant Teacher Samraa Adnan Al-Asadi 1 Contents wireless LAN adapter cards wireless access Points wireless bridges wireless routers Assistant

More information