aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-litecell15/calib_file.c
diff options
context:
space:
mode:
authorMinh-Quang Nguyen <minh-quang.nguyen@nutaq.com>2016-06-09 16:19:12 -0400
committerHarald Welte <laforge@gnumonks.org>2016-06-15 09:44:58 +0000
commitcbbce0be0965c3160c4916384c3d3d5303c57ae2 (patch)
tree5d440086701274a80b37e7b8d557c0fba00dae6e /src/osmo-bts-litecell15/calib_file.c
parentd0d2c9217a909c1455dfabb26cd3e678493490d9 (diff)
LC15: Hardware changes:
- Change system devices path - Remove obsoleted sensors and add new sensors - Change TRX and sensors numbering to 0,1 instead of 1,2 (JFD) Change-Id: I5172daf68d3145a6398e37df87df21b0e5affe42
Diffstat (limited to 'src/osmo-bts-litecell15/calib_file.c')
-rw-r--r--src/osmo-bts-litecell15/calib_file.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/osmo-bts-litecell15/calib_file.c b/src/osmo-bts-litecell15/calib_file.c
index da79df6f..c6be4f05 100644
--- a/src/osmo-bts-litecell15/calib_file.c
+++ b/src/osmo-bts-litecell15/calib_file.c
@@ -53,31 +53,31 @@ struct calib_file_desc {
static const struct calib_file_desc calib_files[] = {
{
- .fname = "calib_rx1a.conf",
+ .fname = "calib_rx0a.conf",
.rx = 1,
.trx = 0,
.rxpath = 0,
}, {
- .fname = "calib_rx1b.conf",
+ .fname = "calib_rx0b.conf",
.rx = 1,
.trx = 0,
.rxpath = 1,
}, {
- .fname = "calib_rx2a.conf",
+ .fname = "calib_rx1a.conf",
.rx = 1,
.trx = 1,
.rxpath = 0,
}, {
- .fname = "calib_rx2b.conf",
+ .fname = "calib_rx1b.conf",
.rx = 1,
.trx = 1,
.rxpath = 1,
}, {
- .fname = "calib_tx1.conf",
+ .fname = "calib_tx0.conf",
.rx = 0,
.trx = 0,
}, {
- .fname = "calib_tx2.conf",
+ .fname = "calib_tx1.conf",
.rx = 0,
.trx = 1,
},