Skip to content

Commit

Permalink
Merge pull request #488 from handymenny/fix-nsg-scat-dsabled
Browse files Browse the repository at this point in the history
Don't disable nsg type when scat isn't available
  • Loading branch information
handymenny authored Sep 30, 2024
2 parents 82008ab + e9a4536 commit db312eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ enum class LogType(val description: String) {
RF("QCT Modem Capabilities"),
SHNR("Shannon NR UE Cap Config Protobuf"),
P("PCAP"),
NSG("NSG baseband log json"),
DLF("DLF baseband log"),
QMDL("QMDL baseband log"),
HDF("HDF baseband log"),
SDM("SDM baseband log"),
NSG("NSG baseband log json");
SDM("SDM baseband log");

companion object {
/** All entries except invalid ones */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ internal class ServerModeOthersTest {
"RF",
"SHNR",
"P",
"NSG",
"DLF",
"QMDL",
"HDF",
"SDM",
"NSG"
"SDM"
)
.filter { scatAvailable || it !in scatTypes }
.map(LogType::of)
Expand Down

0 comments on commit db312eb

Please sign in to comment.