mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-18 07:00:30 +00:00
Compare commits
6 Commits
pre-commit
...
feat-ch-em
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c48a6ba35e | ||
|
|
3137a6e684 | ||
|
|
cb7179111a | ||
|
|
889108e505 | ||
|
|
5926e5db5d | ||
|
|
bf849f2f73 |
156
CHANNELEMULATOR.md
Normal file
156
CHANNELEMULATOR.md
Normal file
@@ -0,0 +1,156 @@
|
||||
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-mml-chtml.min.js">
|
||||
</script>
|
||||
<script type="text/x-mathjax-config">
|
||||
MathJax.Hub.Config({
|
||||
tex2jax: {
|
||||
inlineMath: [['$', '$'] ],
|
||||
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
# Overview
|
||||
This document serves as a guide to loading a pre-generated dataset of Channel Impulse Responses (CIRs)—for example, computed using Sionna RT—and performing real-time 5G emulation using OpenAirInterface (OAI).
|
||||
|
||||
For full system architecture details, please refer to: [https://arxiv.org/abs/2503.12177v2](https://arxiv.org/abs/2503.12177v2)
|
||||
|
||||
As a sample scenario, this repository includes the Shibuya Scramble Crossing CIR dataset used in the paper, placed under `oai_cir/cir/output/binary/`.
|
||||
|
||||
# Supported Environment
|
||||
|
||||
|||
|
||||
|-|-|
|
||||
|CPU | AMD Ryzen 9 7900X 12-core processor (x24) |
|
||||
|RAM | 32 GB |
|
||||
|Operating System | Ubuntu 22.04.4 LTS |
|
||||
|Linux kernel version | 6.8.1-060801-generic |
|
||||
|SDR | USRP B200 |
|
||||
|COTS UE | Quectel RM500Q-GL |
|
||||
|||
|
||||
|
||||
# Prerequisites (after setting up base OAI environment)
|
||||
|
||||
## 1. Install AOCL-BLAS
|
||||
|
||||
```bash
|
||||
# Install dependencies
|
||||
sudo apt install build-essential make g++ gfortran cmake
|
||||
|
||||
# Build and install BLIS
|
||||
git clone https://github.com/amd/blis.git
|
||||
cd blis
|
||||
./configure --enable-cblas -t openmp auto
|
||||
make
|
||||
make check
|
||||
sudo make install
|
||||
sudo ldconfig
|
||||
```
|
||||
|
||||
## 2. Configure pkg-config
|
||||
|
||||
```bash
|
||||
# Copy the pkg-config file
|
||||
sudo cp /usr/local/share/pkgconfig/blis-mt.pc /usr/local/share/pkgconfig/cblis.pc
|
||||
```
|
||||
|
||||
## 3. Configure AOCL-BLAS multithreading
|
||||
|
||||
```bash
|
||||
echo "export BLIS_NUM_THREADS=6" >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
```
|
||||
|
||||
For more details, see:
|
||||
[https://github.com/amd/blis/blob/master/docs/Multithreading.md](https://github.com/amd/blis/blob/master/docs/Multithreading.md)
|
||||
|
||||
---
|
||||
|
||||
## Configuration: `oai_cir/cir_conf.txt`
|
||||
|
||||
The 2nd through 5th rows of the parameters in the `oai_cir/cir_conf.txt` as shown in below can be set freely (the 1st row is read-only).
|
||||
|
||||
1. **Max path gain \[dB]** in the CIR dataset (read-only).
|
||||
2. **Offset \[dB]** added to compensate signal attenuation (typically around (–2)× the first-line value + 5), to fit within the gNB/UE receiver's dynamic range.
|
||||
3. **Noise level \[dB]**.
|
||||
4. **Number of delay taps** $N$ to apply in the convolution.
|
||||
5. **Number of CIR data files** to vary over time based on the mobility scenario.
|
||||
|
||||
Notes:
|
||||
|
||||
* Line 2: To maintain a continuous connection between the gNB and UE throughout the sample scenario, this **Offset** parameter must be finely tuned. If the Offset is set too low, the UE either fails to attach to the gNB or detaches almost immediately. If it is set too high, a COTS UE’s automatic-gain control will engage, complicating the link-budget calculation; with an OAI UE or RF-simulation-based nrUE, the signal will exceed the dynamic range and the UE will likewise fail to attach. In the test environment, a value of roughly **(Max path gain × –2) + 5 dB** seemed to be appropriate.
|
||||
|
||||
* Line 4: After bandwidth filtering, delay taps are sorted by descending amplitude, and only the top $N$ taps are used.
|
||||
With the sample CIR dataset, you can specify any value from 1 to 146.
|
||||
In the test environment, real-time communication between gNB (USRP B200) and COTS UE (Quectel RM500Q-GL) was possible up to $N = 29$; for larger values the real-time processing could not keep up.
|
||||
|
||||
* Line 5: Specifies how many files (maximum = number of files in `oai_cir/cir/output/binary/`, default 230; minimum = 1) to load in sequence.
|
||||
Each file's CIR data is convolved with the baseband signal for 100 ms, then the emulator switches to the next file.
|
||||
Once the last file finishes, the cycle restarts at `delay{amp/index}list0000.b`.
|
||||
|
||||
### Binary file formats
|
||||
|
||||
#### `delayamplist****.b`
|
||||
$h^{\rm re}_{\rm sort,1}, h^{\rm im}_{\rm sort,1}, h^{\rm re}_{\rm sort,2}, h^{\rm im}_{\rm sort,2}, \cdots$
|
||||
|
||||
Each $h^{\rm re/im}_{{\rm sort},n}$ is the real/imaginary part (float32) of the $n$-th highest-amplitude complex tap from the sorted CIR.
|
||||
|
||||
#### `delayindexlist****.b`
|
||||
$i_{\rm sort,1}, i_{\rm sort,2}, i_{\rm sort,3}, \cdots$
|
||||
|
||||
Each $i_{{\rm sort},n}$ is the original delay index (int32) before sorting.
|
||||
|
||||
---
|
||||
|
||||
# Build and Run Emulator
|
||||
|
||||
## Option 1: gNB with USRP
|
||||
Build gNB with USRP mode.
|
||||
```bash
|
||||
cd ~/oai_cir/cmake_targets/
|
||||
sudo ./build_oai -w USRP --gNB
|
||||
```
|
||||
|
||||
Run gNB with USRP mode.
|
||||
```bash
|
||||
cd ~/oai_cir/cmake_targets/ran_build/build
|
||||
./nr-softmodem \
|
||||
-O ../../../targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band77.fr1.106PRB.usrpb210.chemu.yaml \
|
||||
--sa --non-stop -E
|
||||
```
|
||||
|
||||
## Option 2: RF Simulator with gNB and nrUE
|
||||
Build gNB and nrUE with RF simulation mode.
|
||||
```bash
|
||||
cd ~/oai_cir/cmake_targets/
|
||||
sudo ./build_oai -w SIMU --gNB --nrUE
|
||||
```
|
||||
|
||||
Run gNB with RF simulation mode.
|
||||
```bash
|
||||
cd ~/oai_cir/cmake_targets/ran_build/build
|
||||
sudo ./nr-softmodem \
|
||||
-O ../../../targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band77.fr1.106PRB.usrpb210.chemu.yaml \
|
||||
--sa --non-stop --rfsim --rfsimulator.serveraddr server
|
||||
```
|
||||
|
||||
Run nrUE with RF simulation mode.
|
||||
```bash
|
||||
cd ~/oai_cir/cmake_targets/ran_build/build
|
||||
sudo ./nr-uesoftmodem \
|
||||
-C 4019160000 -r 106 --numerology 1 --ssb 144 \
|
||||
--rfsim --non-stop --band 77 --rfsimulator.serveraddr 127.0.0.1
|
||||
```
|
||||
|
||||
# Citation
|
||||
If you use this implementation, please cite it as:
|
||||
```bibtex
|
||||
@misc{OWDT,
|
||||
title = {Open Wireless Digital Twin: End-to-End 5G Mobility Emulation in O-RAN Framework},
|
||||
author = {Tetsuya Iye and Masaya Sakamoto and Shohei Takaya and Eisaku Sato and Yuki Susukida and Yu Nagaoka and Kazuki Maruta and Jin Nakazato},
|
||||
year = {2025},
|
||||
eprint={2503.12177},
|
||||
archivePrefix={arXiv},
|
||||
primaryClass={cs.NI},
|
||||
url={https://arxiv.org/abs/2503.12177v2},
|
||||
}
|
||||
```
|
||||
@@ -1031,16 +1031,23 @@ add_dependencies(PHY_COMMON dfts)
|
||||
add_library(PHY ${PHY_SRC})
|
||||
target_link_libraries(PHY PRIVATE asn1_lte_rrc_hdrs asn1_nr_rrc_hdrs)
|
||||
|
||||
pkg_check_modules(blas REQUIRED blas)
|
||||
# pkg_check_modules(blas REQUIRED blas)
|
||||
pkg_check_modules(blis REQUIRED blis)
|
||||
pkg_check_modules(lapacke REQUIRED lapacke)
|
||||
|
||||
add_library(PHY_UE ${PHY_SRC_UE})
|
||||
target_link_libraries(PHY_UE PRIVATE asn1_lte_rrc_hdrs asn1_nr_rrc_hdrs UTIL)
|
||||
# RHEL needs also cblas, but Ubuntu does not have it. So `cblas_LIBRARIES` will
|
||||
# be empty for Ubuntu, a no-op
|
||||
pkg_check_modules(cblas cblas)
|
||||
target_link_libraries(PHY_UE PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES})
|
||||
target_include_directories(PHY_UE PRIVATE ${blas_INCLUDE_DIRS} ${lapacke_INCLUDE_DIRS})
|
||||
# pkg_check_modules(cblas cblas)
|
||||
# target_link_libraries(PHY_UE PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES})
|
||||
# target_include_directories(PHY_UE PRIVATE ${blas_INCLUDE_DIRS} ${lapacke_INCLUDE_DIRS})
|
||||
|
||||
# RHEL needs also cblis, but Ubuntu does not have it. So `cblis_LIBRARIES` will
|
||||
# be empty for Ubuntu, a no-op
|
||||
pkg_check_modules(cblis cblis)
|
||||
target_link_libraries(PHY_UE PRIVATE ${blis_LIBRARIES} ${cblis_LIBRARIES} ${lapacke_LIBRARIES})
|
||||
target_include_directories(PHY_UE PRIVATE ${blis_INCLUDE_DIRS} ${lapacke_INCLUDE_DIRS})
|
||||
|
||||
add_library(PHY_NR_COMMON ${PHY_NR_SRC_COMMON})
|
||||
target_link_libraries(PHY_NR_COMMON PUBLIC UTIL)
|
||||
@@ -1744,7 +1751,8 @@ target_link_libraries(lte-softmodem PRIVATE
|
||||
target_link_libraries(lte-softmodem PRIVATE pthread m CONFIG_LIB rt sctp)
|
||||
target_link_libraries(lte-softmodem PRIVATE ${T_LIB})
|
||||
target_link_libraries(lte-softmodem PRIVATE asn1_nr_rrc_hdrs asn1_lte_rrc_hdrs)
|
||||
target_link_libraries(lte-softmodem PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
# target_link_libraries(lte-softmodem PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
target_link_libraries(lte-softmodem PRIVATE ${blis_LIBRARIES} ${cblis_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
|
||||
if(E2_AGENT)
|
||||
target_compile_definitions(lte-softmodem PRIVATE ${E2AP_VERSION} ${KPM_VERSION} E2_AGENT)
|
||||
@@ -1800,7 +1808,8 @@ target_link_libraries(lte-uesoftmodem PRIVATE
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE pthread m CONFIG_LIB rt sctp)
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE ${T_LIB})
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE asn1_nr_rrc_hdrs asn1_lte_rrc_hdrs)
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
# target_link_libraries(lte-uesoftmodem PRIVATE ${blas_LIBRARIES} ${cblas_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE ${blis_LIBRARIES} ${cblis_LIBRARIES} ${lapacke_LIBRARIES} ${lapack_LIBRARIES})
|
||||
|
||||
# force the generation of ASN.1 so that we don't need to wait during the build
|
||||
target_link_libraries(lte-uesoftmodem PRIVATE
|
||||
@@ -1838,6 +1847,7 @@ target_link_libraries(nr-softmodem PRIVATE pthread m CONFIG_LIB rt sctp)
|
||||
target_link_libraries(nr-softmodem PRIVATE ${T_LIB})
|
||||
target_link_libraries(nr-softmodem PRIVATE asn1_nr_rrc_hdrs asn1_lte_rrc_hdrs)
|
||||
target_link_libraries(nr-softmodem PRIVATE asn1_nr_rrc_hdrs asn1_lte_rrc_hdrs)
|
||||
target_link_libraries(nr-softmodem PRIVATE ${blis_LIBRARIES} ${cblis_LIBRARIES} ${lapacke_LIBRARIES})
|
||||
add_boolean_option(OAI_AERIAL OFF "Activate OAI's AERIAL driver" OFF)
|
||||
if (OAI_AERIAL)
|
||||
target_compile_definitions(nr-softmodem PUBLIC ENABLE_AERIAL)
|
||||
|
||||
@@ -46,6 +46,7 @@ Please see [NOTICE](NOTICE.md) file for third party software that is included in
|
||||
* [System Requirements for Using OAI Stack](./doc/system_requirements.md)
|
||||
* [How to build](./doc/BUILD.md)
|
||||
* [How to run the modems](./doc/RUNMODEM.md)
|
||||
* [How to test channel emulation mode](CHANNELEMULATOR.md)
|
||||
|
||||
Not all information is available in a central place, and information for
|
||||
specific sub-systems might be available in the corresponding sub-directories.
|
||||
|
||||
BIN
cir/output/binary/delayamplist0000.b
Normal file
BIN
cir/output/binary/delayamplist0000.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0001.b
Normal file
BIN
cir/output/binary/delayamplist0001.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0002.b
Normal file
BIN
cir/output/binary/delayamplist0002.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0003.b
Normal file
BIN
cir/output/binary/delayamplist0003.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0004.b
Normal file
BIN
cir/output/binary/delayamplist0004.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0005.b
Normal file
BIN
cir/output/binary/delayamplist0005.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0006.b
Normal file
BIN
cir/output/binary/delayamplist0006.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0007.b
Normal file
BIN
cir/output/binary/delayamplist0007.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0008.b
Normal file
BIN
cir/output/binary/delayamplist0008.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0009.b
Normal file
BIN
cir/output/binary/delayamplist0009.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0010.b
Normal file
BIN
cir/output/binary/delayamplist0010.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0011.b
Normal file
BIN
cir/output/binary/delayamplist0011.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0012.b
Normal file
BIN
cir/output/binary/delayamplist0012.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0013.b
Normal file
BIN
cir/output/binary/delayamplist0013.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0014.b
Normal file
BIN
cir/output/binary/delayamplist0014.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0015.b
Normal file
BIN
cir/output/binary/delayamplist0015.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0016.b
Normal file
BIN
cir/output/binary/delayamplist0016.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0017.b
Normal file
BIN
cir/output/binary/delayamplist0017.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0018.b
Normal file
BIN
cir/output/binary/delayamplist0018.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0019.b
Normal file
BIN
cir/output/binary/delayamplist0019.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0020.b
Normal file
BIN
cir/output/binary/delayamplist0020.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0021.b
Normal file
BIN
cir/output/binary/delayamplist0021.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0022.b
Normal file
BIN
cir/output/binary/delayamplist0022.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0023.b
Normal file
BIN
cir/output/binary/delayamplist0023.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0024.b
Normal file
BIN
cir/output/binary/delayamplist0024.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0025.b
Normal file
BIN
cir/output/binary/delayamplist0025.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0026.b
Normal file
BIN
cir/output/binary/delayamplist0026.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0027.b
Normal file
BIN
cir/output/binary/delayamplist0027.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0028.b
Normal file
BIN
cir/output/binary/delayamplist0028.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0029.b
Normal file
BIN
cir/output/binary/delayamplist0029.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0030.b
Normal file
BIN
cir/output/binary/delayamplist0030.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0031.b
Normal file
BIN
cir/output/binary/delayamplist0031.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0032.b
Normal file
BIN
cir/output/binary/delayamplist0032.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0033.b
Normal file
BIN
cir/output/binary/delayamplist0033.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0034.b
Normal file
BIN
cir/output/binary/delayamplist0034.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0035.b
Normal file
BIN
cir/output/binary/delayamplist0035.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0036.b
Normal file
BIN
cir/output/binary/delayamplist0036.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0037.b
Normal file
BIN
cir/output/binary/delayamplist0037.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0038.b
Normal file
BIN
cir/output/binary/delayamplist0038.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0039.b
Normal file
BIN
cir/output/binary/delayamplist0039.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0040.b
Normal file
BIN
cir/output/binary/delayamplist0040.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0041.b
Normal file
BIN
cir/output/binary/delayamplist0041.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0042.b
Normal file
BIN
cir/output/binary/delayamplist0042.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0043.b
Normal file
BIN
cir/output/binary/delayamplist0043.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0044.b
Normal file
BIN
cir/output/binary/delayamplist0044.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0045.b
Normal file
BIN
cir/output/binary/delayamplist0045.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0046.b
Normal file
BIN
cir/output/binary/delayamplist0046.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0047.b
Normal file
BIN
cir/output/binary/delayamplist0047.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0048.b
Normal file
BIN
cir/output/binary/delayamplist0048.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0049.b
Normal file
BIN
cir/output/binary/delayamplist0049.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0050.b
Normal file
BIN
cir/output/binary/delayamplist0050.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0051.b
Normal file
BIN
cir/output/binary/delayamplist0051.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0052.b
Normal file
BIN
cir/output/binary/delayamplist0052.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0053.b
Normal file
BIN
cir/output/binary/delayamplist0053.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0054.b
Normal file
BIN
cir/output/binary/delayamplist0054.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0055.b
Normal file
BIN
cir/output/binary/delayamplist0055.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0056.b
Normal file
BIN
cir/output/binary/delayamplist0056.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0057.b
Normal file
BIN
cir/output/binary/delayamplist0057.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0058.b
Normal file
BIN
cir/output/binary/delayamplist0058.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0059.b
Normal file
BIN
cir/output/binary/delayamplist0059.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0060.b
Normal file
BIN
cir/output/binary/delayamplist0060.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0061.b
Normal file
BIN
cir/output/binary/delayamplist0061.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0062.b
Normal file
BIN
cir/output/binary/delayamplist0062.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0063.b
Normal file
BIN
cir/output/binary/delayamplist0063.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0064.b
Normal file
BIN
cir/output/binary/delayamplist0064.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0065.b
Normal file
BIN
cir/output/binary/delayamplist0065.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0066.b
Normal file
BIN
cir/output/binary/delayamplist0066.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0067.b
Normal file
BIN
cir/output/binary/delayamplist0067.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0068.b
Normal file
BIN
cir/output/binary/delayamplist0068.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0069.b
Normal file
BIN
cir/output/binary/delayamplist0069.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0070.b
Normal file
BIN
cir/output/binary/delayamplist0070.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0071.b
Normal file
BIN
cir/output/binary/delayamplist0071.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0072.b
Normal file
BIN
cir/output/binary/delayamplist0072.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0073.b
Normal file
BIN
cir/output/binary/delayamplist0073.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0074.b
Normal file
BIN
cir/output/binary/delayamplist0074.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0075.b
Normal file
BIN
cir/output/binary/delayamplist0075.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0076.b
Normal file
BIN
cir/output/binary/delayamplist0076.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0077.b
Normal file
BIN
cir/output/binary/delayamplist0077.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0078.b
Normal file
BIN
cir/output/binary/delayamplist0078.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0079.b
Normal file
BIN
cir/output/binary/delayamplist0079.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0080.b
Normal file
BIN
cir/output/binary/delayamplist0080.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0081.b
Normal file
BIN
cir/output/binary/delayamplist0081.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0082.b
Normal file
BIN
cir/output/binary/delayamplist0082.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0083.b
Normal file
BIN
cir/output/binary/delayamplist0083.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0084.b
Normal file
BIN
cir/output/binary/delayamplist0084.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0085.b
Normal file
BIN
cir/output/binary/delayamplist0085.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0086.b
Normal file
BIN
cir/output/binary/delayamplist0086.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0087.b
Normal file
BIN
cir/output/binary/delayamplist0087.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0088.b
Normal file
BIN
cir/output/binary/delayamplist0088.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0089.b
Normal file
BIN
cir/output/binary/delayamplist0089.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0090.b
Normal file
BIN
cir/output/binary/delayamplist0090.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0091.b
Normal file
BIN
cir/output/binary/delayamplist0091.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0092.b
Normal file
BIN
cir/output/binary/delayamplist0092.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0093.b
Normal file
BIN
cir/output/binary/delayamplist0093.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0094.b
Normal file
BIN
cir/output/binary/delayamplist0094.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0095.b
Normal file
BIN
cir/output/binary/delayamplist0095.b
Normal file
Binary file not shown.
BIN
cir/output/binary/delayamplist0096.b
Normal file
BIN
cir/output/binary/delayamplist0096.b
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user