mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-16 19:51:53 +02:00
prod/doc/index.html: added section separators; expanded setup section
This commit is contained in:
parent
1bfe86ac1b
commit
f5b1693a0c
@ -29,6 +29,9 @@ Devices accepted for further use can then be packaged for shipping.
|
||||
Defective devices can be discarded or retained for a deeper analysis.
|
||||
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
|
||||
<H2>Terminology</H2>
|
||||
|
||||
<DL>
|
||||
@ -73,16 +76,129 @@ Defective devices can be discarded or retained for a deeper analysis.
|
||||
</DL>
|
||||
|
||||
|
||||
<H2>Setup</H2>
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
|
||||
<H2>Software setup</H2>
|
||||
|
||||
Before performing any production tests, various pieces of software
|
||||
need to be installed on Ben and PC, and configuration settings
|
||||
@@@
|
||||
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>PC software installation</H3>
|
||||
|
||||
@@@
|
||||
|
||||
<H4>Install ben-wpan tools</H4>
|
||||
|
||||
@@@
|
||||
|
||||
<H4>Register Ben host name</H4>
|
||||
|
||||
To simplify accessing the Ben via TCP/IP, its IP address should be
|
||||
registered in the hosts file on the PC. If the Ben is running OpenWrt,
|
||||
use the following command:
|
||||
<PRE>
|
||||
echo 192.168.254.101 ben >>/etc/hosts
|
||||
</PRE>
|
||||
<P>
|
||||
If the Ben is running Jlime, the address would be as follows:
|
||||
<PRE>
|
||||
echo 192.168.1.202 ben >>/etc/hosts
|
||||
</PRE>
|
||||
<P>
|
||||
If using the same PC with Bens running OpenWrt and Jlime, one may choose
|
||||
different host names depending on the distribution, and adapt the commands
|
||||
used in the production and testing process accordingly. For example,
|
||||
<PRE>
|
||||
echo 192.168.254.101 ben >>/etc/hosts
|
||||
echo 192.168.1.202 jlime >>/etc/hosts
|
||||
</PRE>
|
||||
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Ben system setup</H3>
|
||||
|
||||
The configuration setting described in this section are lost on each
|
||||
reset or reboot and either need to be entered again or a setup script
|
||||
running at boot time has to
|
||||
This needs to be done each time the Ben is booted.
|
||||
|
||||
|
||||
<H4>Enable network access</H4>
|
||||
|
||||
Once the Ben has booted and started USB networking, the interface
|
||||
on the PC side is configured as follows:
|
||||
<PRE>
|
||||
ifconfig usb0 192.168.254.100 up
|
||||
</PRE>
|
||||
<P>
|
||||
These are the settings for OpenWrt, assuming the network device is
|
||||
called "usb0". If using Jlime, the command would be as follows:
|
||||
<PRE>
|
||||
ifconfig usb0 192.168.1.200 up
|
||||
</PRE>
|
||||
|
||||
|
||||
<H4>Silence other 8:10 card users</H4>
|
||||
|
||||
Before running any of the ben-wpan utilities, other users of the 8:10
|
||||
card slot have to be disabled. In a Ben running the regular OpenWrt or
|
||||
Jlime distribution, the only such user that is automatically started
|
||||
is the MMC kernel driver. The following command disables it:
|
||||
<PRE>
|
||||
echo jz4740-mmc.0 >/sys/bus/platform/drivers/jz4740-mmc/unbind
|
||||
</PRE>
|
||||
<P>
|
||||
If a WPAN-enabled kernel has been installed, the AT86RF230 driver takes
|
||||
the place of the MMC driver. To disable it, run
|
||||
<PRE>
|
||||
echo spi2.0 >/sys/bus/spi/drivers/at86rf230/unbind
|
||||
</PRE>
|
||||
|
||||
|
||||
<H4>Start atrf-proxy</H4>
|
||||
|
||||
On the Ben, launch the proxy daemon. We pass the option -b to background it:
|
||||
<PRE>
|
||||
atrf-proxy -b
|
||||
</PRE>
|
||||
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Ben software installation</H3>
|
||||
<H3>Ben software setup</H3>
|
||||
|
||||
<H4>Password-less remote access</H4>
|
||||
|
||||
To enable password-less remote access from the PC, setup to betwork
|
||||
access to the Ben and run the following command:
|
||||
<PRE>
|
||||
ssh ben 'cat >>/etc/dropbear/authorized_keys' <~/.ssh/id_rsa.pub
|
||||
</PRE>
|
||||
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Test profiles</H3>
|
||||
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
|
||||
<H2>Flashing (atusb only)<H2>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Flashing the boot loader</H3>
|
||||
|
||||
<P>
|
||||
@ -90,6 +206,9 @@ Defective devices can be discarded or retained for a deeper analysis.
|
||||
<P>
|
||||
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Flashing the application</H3>
|
||||
|
||||
<P>
|
||||
@ -97,28 +216,53 @@ Defective devices can be discarded or retained for a deeper analysis.
|
||||
<P>
|
||||
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
|
||||
<H2>Functional test</H2>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Test setup for atben</H3>
|
||||
|
||||
<P>
|
||||
<IMG src="setup-A.png">
|
||||
<P>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Test setup for atusb</H3>
|
||||
|
||||
<P>
|
||||
<IMG src="setup-B.png">
|
||||
<P>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Test procedure</H3>
|
||||
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
|
||||
<H2>Fault analysis</H2>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Component placement and orientation</H3>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Supply voltages</H3>
|
||||
|
||||
<!-- ---------------------------------------------------------------------- -->
|
||||
|
||||
|
||||
<H3>Clock frequency</H3>
|
||||
|
||||
The flawless performance of the crystal oscillator is crucial for
|
||||
|
Loading…
Reference in New Issue
Block a user