Revert ISMS Listening Station implementation

Remove all ISMS (Intelligent Spectrum Monitoring Station) code including:
- GSM cell scanning with gr-gsm
- Spectrum monitoring via rtl_power
- OpenCelliD tower integration
- Baseline recording and comparison
- Setup script changes for gr-gsm/libosmocore

Reverts to pre-ISMS state (commit 4c1690d).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-16 12:24:16 +00:00
parent 940a43747b
commit bcb3147d1e
15 changed files with 5 additions and 5697 deletions

View File

@@ -5052,190 +5052,3 @@ body::before {
.preset-freq-btn:active {
transform: scale(0.98);
}
/* =============================================================================
ISMS Listening Station Styles
============================================================================= */
.isms-dashboard {
padding: 16px;
}
.isms-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
.isms-panel {
background: var(--bg-card);
border-radius: 8px;
padding: 12px;
border: 1px solid var(--border-color);
}
.isms-panel-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
font-size: 11px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1px;
}
.isms-info-banner {
margin-bottom: 12px;
padding: 8px 12px;
background: rgba(0, 212, 255, 0.1);
border: 1px solid rgba(0, 212, 255, 0.3);
border-radius: 4px;
font-size: 10px;
color: var(--text-muted);
}
/* ISMS Badges */
.isms-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 9px;
font-weight: bold;
text-transform: uppercase;
}
.isms-badge-high {
background: rgba(255, 51, 102, 0.2);
color: var(--accent-red);
border: 1px solid rgba(255, 51, 102, 0.4);
}
.isms-badge-warn {
background: rgba(255, 170, 0, 0.2);
color: var(--accent-orange);
border: 1px solid rgba(255, 170, 0, 0.4);
}
.isms-badge-info {
background: rgba(0, 212, 255, 0.2);
color: var(--accent-cyan);
border: 1px solid rgba(0, 212, 255, 0.4);
}
/* ISMS Band Meter */
.isms-band-meter {
text-align: center;
min-width: 80px;
}
.isms-band-meter .meter-bar {
height: 60px;
width: 20px;
background: rgba(0, 0, 0, 0.5);
border-radius: 4px;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.isms-band-meter .meter-fill {
position: absolute;
bottom: 0;
width: 100%;
background: linear-gradient(to top, var(--accent-green), var(--accent-cyan), var(--accent-orange));
transition: height 0.3s;
}
.isms-band-meter .meter-value {
font-size: 11px;
margin-top: 4px;
font-family: 'JetBrains Mono', monospace;
}
.isms-band-meter .meter-noise {
font-size: 9px;
color: var(--text-muted);
}
/* ISMS Tower Map */
#ismsTowerMap {
height: 180px;
background: rgba(0, 0, 0, 0.3);
border-radius: 4px;
}
#ismsTowerMap .leaflet-control-attribution {
font-size: 8px;
background: rgba(0, 0, 0, 0.6);
color: var(--text-muted);
}
.isms-user-marker {
background: transparent;
border: none;
}
/* ISMS Finding Item */
.isms-finding-item {
padding: 8px;
border-bottom: 1px solid var(--border-color);
font-size: 11px;
}
.isms-finding-item:last-child {
border-bottom: none;
}
/* ISMS Collapsible Panel */
.isms-panel.collapsible .isms-panel-header.clickable {
cursor: pointer;
padding: 12px;
margin: 0;
}
.isms-panel.collapsible .isms-panel-header.clickable:hover {
background: rgba(0, 212, 255, 0.05);
}
/* ISMS Start Button */
#ismsStartBtn.running {
background: linear-gradient(135deg, #ff3366, #ff6b6b);
border-color: #ff3366;
animation: pulse-glow 2s ease-in-out infinite;
}
/* ISMS Recording Status */
#ismsBaselineRecordingStatus {
background: rgba(255, 100, 100, 0.1);
border-radius: 4px;
padding: 8px;
font-size: 10px;
color: var(--accent-red);
animation: recording-blink 1s ease-in-out infinite;
}
@keyframes recording-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
/* ISMS Mode Content */
#ismsMode.mode-content {
display: none;
}
#ismsMode.mode-content.active {
display: block;
}
/* Responsive ISMS Grid */
@media (max-width: 1024px) {
.isms-grid {
grid-template-columns: repeat(2, 1fr);
}
.isms-panel[style*="grid-column: span 4"] {
grid-column: span 2 !important;
}
}