1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

boards/remote-revb: fix broken links

This commit is contained in:
Gunar Schorcht 2020-03-04 13:28:22 +01:00
parent d71c38d825
commit e41e9b565f
2 changed files with 88 additions and 4 deletions

View File

@ -73,7 +73,7 @@ Else install from <https://launchpad.net/gcc-arm-embedded>
Drivers
-------
The RE-Mote features a CP2104 serial-to-USB module, the driver is commonly found in most OS, but if required it can be downloaded
from <https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx>
from <https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers>
### For the CC2538EM (USB CDC-ACM)
@ -108,10 +108,10 @@ More Reading
============
1. [Zolertia RE-Mote website][remote-site]
2. [Zolertia Wiki page][zolertia-wiki]
2. [CC2538 System-on-Chip Solution for 2.4-GHz IEEE 802.15.4 and ZigBee applications (SWRU319B)][cc2538]
3. [CC1200 sub-1GHz RF transceiver][cc1200]
3. [CC2538 System-on-Chip Solution for 2.4-GHz IEEE 802.15.4 and ZigBee applications (SWRU319B)][cc2538]
4. [CC1200 sub-1GHz RF transceiver][cc1200]
[remote-site]: https://zolertia.io/product/re-mote-suite/ "Zolertia RE-Mote"
[remote-site]: https://zolertia.io/product/re-mote/ "Zolertia RE-Mote"
[zolertia-wiki]: https://github.com/Zolertia/Resources/wiki
[cc1200]: http://www.ti.com/product/cc1200 "CC1200"
[cc2538]: http://www.ti.com/product/cc2538 "CC2538"

View File

@ -2,4 +2,88 @@
@defgroup boards_remote-revb RE-Mote Revision B
@ingroup boards
@brief Support for the RE-Mote board Revision B
The `RE-Mote` has three versions, a first prototype A (`remote-pa`) only
distributed to beta testers, its following revision A (`remote-reva`), and the
latest revision B (`remote-revb`) which are commercially available. The
following section focuses on the revision A.
The official RE-Mote wiki page is maintained by Zolertia at:
https://github.com/Zolertia/Resources/wiki
# Components
| MCU | [CC2538 (ARM Cortex-M3 with on-board 2.4GHz radio)](http://www.ti.com/product/CC2538) |
|-------|-----------------------------------------------------------------------------------------------------|
| Radio | Two radio interfaces (IEEE 802.15.4): [2.4GHz](http://www.ti.com/product/CC2538) and [863-950MHz](http://www.ti.com/product/CC1200) |
| | RP-SMA connector for external antenna (with a RF switch to select either 2.4GHz/Sub-GHz radio) |
| USB-to-Serial | [CP2104](https://www.silabs.com/documents/public/data-sheets/cp2104.pdf) |
| Peripherals | RTCC, built-in battery charger for LiPo batteries, External WDT (optional), Micro-SD |
| Others | RGB LED, power management block (150nA when the mote is shutdown)|
# Porting status
In terms of hardware support, the following drivers have been implemented
for CC2538 System-on-Chip:
- UART
- Random number generator
- Low Power Modes
- General-Purpose Timers
- I2C/SPI library
- LEDs
- Buttons
- RF 2.4GHz built-in in CC2538
- RF switch to programmatically drive either 2.4GHz or sub-1GHz to a single
RP-SMA
And under work or pending at CC2538 base CPU:
- Built-in core temperature and battery sensor.
- CC1200 sub-1GHz radio interface.
- Micro-SD external storage.
- ADC
- USB (in CDC-ACM).
- uDMA Controller.
# Layout
![layout](http://i.imgur.com/4bV6lyYl.png)
# Flashing
The RE-Mote has built-in support to flash over USB using the BSL. Previous
versions required to unlock the bootloader by manually pressing the `user
button` and `reset button`, but the current version handles the sequence with an
on-board PIC, so automatically unlocks the bootloader upon flashing.
e.g.
```
Bash
$ make BOARD=remote-reva flash
```
The RE-Mote in its current Revision A has the following pin-out:
![RE-Mote pin-out (front)](https://raw.githubusercontent.com/contiki-os/contiki/master/platform/zoul/images/remote-reva-pinout-front.png)
![RE-Mote pin-out (back)](https://raw.githubusercontent.com/contiki-os/contiki/master/platform/zoul/images/remote-reva-pinout-back.png)
# Pin out and connectors
## RE-Mote ports and connectors
![](http://i.imgur.com/TF21Hin.png)
![](http://i.imgur.com/J7aisKJ.png)
## RE-Mote on-board connectors pin-out
The RE-Mote uses the [Molex 5-pin WM4903-ND male header connector](http://datasheets.globalspec.com/ds/5843/DigiKey/6D12815C-098E-40A3-86A0-22A3C50B75BA) to
connect digital sensors based on I2C and SPI protocols, as well as other sensors
or actuators you may need to connect. The pins are 2.54 mm spaced and the
connector has the following pin-out:
![](http://i.imgur.com/2DZ17PV.png)
![](http://i.imgur.com/q7Hb7Y8.png)
*/