博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to use pcmcia wireless card on arm-xscale board.
阅读量:4137 次
发布时间:2019-05-25

本文共 1543 字,大约阅读时间需要 5 分钟。

 

How to use pcmcia wireless card on arm-xscale board.

 

1.First download wireless_too.28.tar.gz from 

   
   and pcmcia-cs-3.2.8.tar.gz from
   .
2. Then configure and make them using the arm-xscale cross compile tools,after that copy the generated binary cardctl cardmgr iwconfig iwlist iwevnet etc to the BB board's file system(/sbin).
3. Modify the config file under pcmicia-cs-3.28/etc directory. << pcmcia的牌子是 orinoco
   Line: 35
   device "orinoco_cs"
    class "network" module "hermes", "orinoco", "orinoco_cs"
   #class "network" module "orinoco_cs"
    card "WLCFL-11 WLAN Card"
    version "corega","WLCFL-11","ISL37300P","RevA"
   manfid 0xc00f,0x0000
   bind "orinoco_cs"
 
4. Modify the network.conf and wireless.conf (under pcmicia-cs-3.28/etc) to set the default configuration such as ip  address and etc

5. Copy the files under pcmcia-cs-3.2.8/etc/ directory to the  BB file system(/etc/pcmcia/).

 
6. Copy a pcmcia script to the directory /etc/init.d/ of the BB 
file system.
After above process ,then we can use the wireless card.
Some commands are as follows:
 
#cardctl reject
#cardctl insert
#/etc/init.d/pcmcia stop
#/etc/init.d/pcmcia start
#iwconfig                 
#iwconfig eth1 rate 2M
#iwlist eth1 scanning     
//iwlist command can run only when the wireless bit rate is 2M ,we  don't know why.
#iwconfig eth1 essid "Navi-Test"
#iwconfig eth1 key "*********"  
//Now we don't know hot to set a WPA-PSK key.
#iwconfig eth1 mode ad-hoc
#iwconfig eth1 mode managed
 
Now we can use the wireless card at either ad-hoc or managed mode.
Also we run any Ethernet programs on the wireless network.

转载地址:http://qomvi.baihongyu.com/

你可能感兴趣的文章
在qt中使用QSplitter设置初始比例setStretchFactor失效的解决方法
查看>>
repeater的使用
查看>>
qt msvc编译中文乱码解决
查看>>
qt实现点击出现窗口,点击其他任何地方窗口消失
查看>>
QML DropArea拖拉文件事件
查看>>
CORBA links
查看>>
读后感:&gt;
查看>>
ideas about sharing software
查看>>
different aspects for software
查看>>
To do list
查看>>
Study of Source code
查看>>
如何使用BBC英语学习频道
查看>>
spring事务探索
查看>>
浅谈Spring声明式事务管理ThreadLocal和JDKProxy
查看>>
初识xsd
查看>>
java 设计模式-职责型模式
查看>>
构造型模式
查看>>
svn out of date 无法更新到最新版本
查看>>
java杂记
查看>>
RunTime.getRuntime().exec()
查看>>