cariboulabs-cariboulite/README.md

99 wiersze
6.0 KiB
Markdown
Czysty Zwykły widok Historia

2021-06-14 22:03:56 +00:00
# CaribouLite
2021-06-14 22:34:04 +00:00
CaribouLite is an affordable, educational, open-source SDR platform that is also a HAT for the Raspberry-Pi family of boards (40-pin versions only). It is built for makers, hackers, and researchers and was designed to complement the SDR current eco-systems offering with a scalable, standalone dual-channel software-defined radio.
2021-06-14 22:03:56 +00:00
<table>
<tr>
2021-06-15 12:09:21 +00:00
<td><img src="hardware/rev1/DSC_1044.jpg" alt="Top View"></td>
2021-06-14 22:03:56 +00:00
</tr>
<tr>
2021-06-15 12:09:21 +00:00
<td>CaribouLite SDR mounted on a RPI-Zero</td>
2021-06-14 22:03:56 +00:00
</tr>
</table>
2021-06-21 21:48:13 +00:00
Unlike many other HAT projects, CaribouLite utilizes the <B>SMI</B> (Secondary Memory Interface) present on all the 40-pin RPI versions. This interface is not thoroughly documented by both Raspberry-Pi documentation and Broadcomm's reference manuals. An amazing work done by [Lean2](https://iosoft.blog/2020/07/16/raspberry-pi-smi/) (code in [git repo](https://github.com/jbentham/rpi)) in hacking this interface contributes to CaribouLite's technical feasibility. A deeper overview of the interface is provided by G.J. Van Loo, 2017 [Secondary_Memory_Interface.pdf](docs/smi/Secondary%20Memory%20Interface.pdf). The SMI interface allows exchanging up to ~500Mbit/s between the RPI and the HAT, and yet, the results vary between the different versions of RPI. The results further depend on the specific RPI version's DMA speeds.
2021-06-14 22:03:56 +00:00
2021-06-14 22:34:04 +00:00
In our application, each ADC sample contains 13 bit (I) and 13 bit (Q), that are streamed with a maximal sample rate of 4 MSPS from the AT86RF215 IC. This channel requires 4 bytes (samples padded to 32-bit) per sample (and I/Q pair) => 16 MBytes/sec which are 128 MBits/sec. In addition to the 13 bit for each of I/Q, the Tx/Rx streams of data contain flow control and configuration bits. The modem (AT86RF215) IC by Microchip contains two RX I/Q outputs from its ADCs (one for each physical channel - sub-1GHz and 2.4GHz), and a single TX I/Q intput directed to the DACs.
2021-06-14 22:03:56 +00:00
2021-06-16 06:41:54 +00:00
CaribouLite has been submitted to CrowdSupply and has been pre-launched! [Visit our page](https://www.crowdsupply.com/cariboulabs/cariboulite)
2021-06-16 06:40:12 +00:00
# Hardware Revisions
**A working prototype version** of the board ([REV1](hardware/rev1)) has been produced and tested to meet product requirements.
2021-06-17 17:03:50 +00:00
In the meantime, a second revision of the board is being produced with the following main updates (see picture below):
2021-06-14 22:34:04 +00:00
1. Image rejection filtering improvement - U10 and U12 (HPF & LPF) - have been replaced by integrated LTCC filters by MiniCircuits
2. Removing FPGA flash - redundant given the fact that the the RPI configures the FPGA in <1sec over SPI.
3. Board layout improvements and overlays (silkscreen) beautification (including logo)
2021-06-16 06:40:12 +00:00
4. More detailed changes in the [schematics](hardware/rev2/schematics/cariboulite_r2_sch.PDF).
2021-06-14 22:34:04 +00:00
In CaribouLite-R2 the PCB design has been thoroughly re-thought to meet its educational needs. The RF path has been annotated with icons to ease the orientation in the schematics sheets, friendly silk writing was added describing system's components by their functionality rather than logical descriptors, and more.
<table>
<tr>
2021-06-15 12:09:21 +00:00
<td><img src="hardware/rev2/pictures/cad_image_bw.png" alt="Top View"></td>
2021-06-14 22:34:04 +00:00
</tr>
<tr>
<td>Top & Bottom view, Production Rev2</td>
</tr>
</table>
**Deeper project details will be published shortly in our Wiki pages.**
2021-06-14 22:03:56 +00:00
# Specifications
<B>RF Channels:</B>
- Sub-1GHz: 389.5-510 MHz / 779-1020 MHz
- Wide tuning channel: 30 MHz - 6 GHz (excluding 2398.5-2400 MHz and 2483.5-2485 MHz)
<table>
<tr>
2021-06-14 23:24:36 +00:00
<td><img src="hardware/rev1/frequencies.png" alt="spectra"></td>
2021-06-14 22:03:56 +00:00
</tr>
<tr>
<td style="text-align:center">Applicable spectra, S1G - sub-1GHz, WB - Wide tuning channel</td>
</tr>
</table>
2021-06-15 12:13:15 +00:00
<B>Note</B>:
2021-06-17 17:03:50 +00:00
The gaps are defined by the design constraints of the system and may not exist in real-life hardware. Actual modem synthesizer outputs test show wider margins at room temperature than those written in the datatsheet, but, as noted by Microchip, performance may suffer.
2021-06-14 22:03:56 +00:00
<B>FPGA specifications:</B>
- 160 LABs / CLBs
- 1280 Logic Elements / Cells
- 65536 Total RAM bits
- 67 I/Os, Temp: -40-100 degC
<B>Applicable RPI models</B>: RPI_1(B+/A+), RPI_2B, RPI_Zero(Zero/W/WH), RPI_3(B/A+/B+), RPI_4B
Parameter | Sub-1GHz | Wide Tuning Channel
---------------------------|------------------------------|------------------------------------------------------------------
Frequency tuner range | 389.5-510 MHz / 779-1020 MHz | 30 MHz - 6 GHz (excluding 2398.5-2400 MHz and 2483.5-2485 MHz)
Sample rate (ADC / DAC) | 4 MSPS | 4 MSPS
Analog bandwidth (Rx / Tx) | <4 MHz | <4 MHz
Max Transmit power | 14.5 dBm | >14 dBm @ 30-2400 MHz, >13 dBm @ 2400-6000 MHz
Receive noise figure | <4.5 dB | <4.5 dB @ 30-3500 MHz, <8 dB @ 3500-6000 MHz
2021-06-15 12:13:15 +00:00
<B>Note</B>:
(1) Feature comparison table with other SDR devices will be published shortly
(2) Some of the above specifications are simulated rather than tested
2021-06-17 12:45:43 +00:00
(3) Analog bandwidth controlled by the modem
2021-06-15 12:13:15 +00:00
2021-06-14 22:03:56 +00:00
# Board Layout
2021-06-14 23:24:36 +00:00
![2d_nums](hardware/rev1/2d_nums.png)
2021-06-14 22:03:56 +00:00
<B>Description:</B>
2021-06-17 17:33:06 +00:00
1. Raspberry-Pi 40-pin connector
2021-06-14 22:03:56 +00:00
2. A modem - AT86RF215
3. TCXO - 0.5 ppm @ 26 MHz
2021-06-17 17:03:50 +00:00
4. FPGA - ICE40LP series from Lattice Semi.
5. A frequency mixer with integrated synthesizer - RFFC5072
2021-06-14 22:03:56 +00:00
6. External reference clock connector (may be used to acheive coherence between many CaribouLite units.
7. A PMOD connector for FPGA expantion
8. RPI configuration EEPROM (following RPI-HAT specifications)
9. RF front-end - switched, amplifiers, and filters.
10. Reset switch
11. User custom switch + RPI HAT EEPROM reconfiguration (write-enable) switch
12. Wide band SMA connector
13. Sub 1-GHz SMA connector
2021-06-18 12:36:26 +00:00
# License
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.