| 34 | } |
| 35 | |
| 36 | QString normalizedNativeBandKey(const QString& bandName, ModelCapabilities caps) |
| 37 | { |
| 38 | QString key = bandName; |
| 39 | if (key.endsWith('m') && key.length() > 1) { |
| 40 | const QString stripped = key.chopped(1); |
| 41 | if (isNativeBandKey(stripped, caps)) |
| 42 | key = stripped; |
| 43 | } |
| 44 | return key; |
| 45 | } |
| 46 | |
| 47 | double tileBandwidth(double lowMhz, double highMhz) |
| 48 | { |
no test coverage detected