meas: Add Slot Counts to the bts defs

This commit is contained in:
Keith Whyte 2021-10-17 01:56:40 +02:00
parent d60394b898
commit 9cb70fde3d

View file

@ -2,7 +2,7 @@ const bts_defs = [
// Index, TRX, Name, ARFCN, BSIC // Index, TRX, Name, ARFCN, BSIC
<% @bts.each_with_index do |bts, index| -%> <% @bts.each_with_index do |bts, index| -%>
<% bts["trx"].each_with_index do |trx, trx_i| -%> <% bts["trx"].each_with_index do |trx, trx_i| -%>
[<%= index %>, <%= trx_i %>, "<%= bts["name"] %>", <%= trx["chan"]%>, <%= bts["bsic"]%>], [<%= index %>, <%= trx_i %>, "<%= bts["name"] %>", <%= trx["chan"]%>, <%= bts["bsic"]%>, <%=(bts["sdcch"]==nil) ? '8' : bts["sdcch"]%>, <%=(bts["tch"]==nil) ? '12' : bts["tch"]%>],
<% end -%> <% end -%>
<% end -%> <% end -%>
] ]