forked from davecrump/portsdown4
-
Notifications
You must be signed in to change notification settings - Fork 6
/
version_history.txt
1155 lines (909 loc) · 31.3 KB
/
version_history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
202410290
Improve handling of Meteor server outages
202410150
Correct LimeSDR Mini V2 gateware download
202409090
Update receive touch overlay map
202408210
Add sweeper to "Restore Factory Config"
202407130
Display current system time on info screen
202407050
Display test card in web view
202407040
Check and wait for busy port in scheduler
202407030
Correct Update to allow for ATEM 0.9 or 0.95 versions
202407020
Update to allow for ATEM 0.9 or 0.95 versions
202406190
Operate Lime PTT immediately when transmission starts, rather than waiting for preset delay
202406173
Add front panel gain controls to Lime BandViewer
202406172
Add front panel gain controls to Pluto BandViewer
202406171
Refresh beacon/site names in menu after change
202406170
Add Portsdown Receive Button to Lime and Pluto BandViewer
Reduce possibility of crash to blank screen
Add optional timestamp to Receive Params and snaps
Add band to Receive Params
202406151
Amend contest card layout
202406150
Fix stored contest codes corruption
202405300
Fix "Save settings to USB"
202405080
Experimental mouse control with HDMI Display
202405070
Correct Meteorview server setting
202404270
Add Pluto Version of Noise Meter
202405260
Add boot options and Ryde co-install
202404240
Add Pluto Version of NF Meter
202404230
Add Waterfall to Pluto BandViewer
202404160
Add Web Control to remaining test equipment
202404090
Add Raw TS Input Modes (for LinkPi encoder)
202404070
Add Web Control to all versions of BandViewer
202404050
Add Web Control to NF Meter
202404030
Add Web Control to Noise Meter
202403280
Add IQ File Replay
202403250
VLC Receive Improvements
PicoTuner Reliability Improvements
202403130
Bugfix 7 inch screen invert selection
202403110
Move VLC to next track at start of RX for PicoTuner
202403040
Fix port forwarding browser access
202403031
Web Control for RTL-SDR BandViewer
202402250
Stop Meteorviewer logging to prevent logs filling
202402200
Set HDMI resolution when used without touchscreen
202402130
Minor Tuner and Audio changes
202402110
Add Experimental PicoTuner Support
202402060
Minor update to Pluto BandViewer
202401251
Add List of Network Devices
Add Band GPIOs for Pluto BandViewer
Add facility to Over-ride Lime Upsample settings
202401170
Re-introduce boot-to-TX option
Add LAN device listing facility
202311130
Adjust MeteorView remote scaling
202311030
Improve ADF4351 Reliability in SigGen
202310260
Add Waterfall to LimeSDR BandViewer
202310240
Intermediate update to MeteorViewer
202310190
Support for RSP2 in SDRplay BandViewer
202310170
Increase time smoothing in LimeSDR BandViewer
202310110
Add limited support for the MS2106 EasyCap and Logitech Brio 4K Camera
202310080
Bugfix crash on Lime BandViewer 20 dB range selection
202310060
Add absolute carrier level measurement to noise meter
202310040
Improve update script with decisions and feedback
Add 100 kHz and 200 kHz spans to LimeSDR BandViewer
202309300
Improve SDRplay driver installation handling in update
SDRplay BandViewer frequency limit checking and display tweaks
SDRplay Bandviewer frequency offset entry
202309270
Correct bin power calculation in all BandViewers and noise meters
In SigGen, trial new touchscreen routine with better response.
202309260
Correct bin power calculation in SDRPlay BandViewer
202309230
Add SDRplay BandViewer with waterfall and web control
Improve MeteorViewer
Update Web View during software update process
202309050
Pin libiio at version 0.25
202309040
SDRPlay install fixes
202309030
MeteorView Reliability Improvements
202308300
Update MeteorView to control headless receiver server from browser
202308240
Install Open SSL and Websockets
Add robust scheduler for Meteor Beacon RX
202308220
Refresh and Bugfix SigGen
Bugfix sdrplay api install
202308210
Meteorview upgraded to work without touchscreen
202308190
Booting without touchscreen enables web control
202307171
Use more recent versions of config.guess files
Update RaspBIOS Version for new builds
202306190
Bugfix Lime DVB-T Transmit Power level
202305130
Improvements to wav2lime command line IQ file player
202304300
Add direct entry of non-standard SR on RX Menu
Update LongMynd and identify (but not display) H266
Simplify Lime SigGen for cleaner signal
202304260
Add variable waterfall time span to MeteorViewer
202304220
Add Noise Meter
202303290
Minor MeteorViewer fixes for other RSP models
202303250
Update RaspBIOS Version
Bugfix MeteorViewer gain
202303220
Update MeteorViewer
LimeSDR Mini V2 Improvements
202303151
Specify font in convert command
202303150
Install SDRPlay API
Add MeteorViewer
202303010
Update LimeSuite to 22.09
Add support for LimeSDR Mini 2
Remove non-functional Lime "do not calibrate" option
202302260
Minor bugfixes
202302031
Correct Jetson PTT Switching
202302030
Improve Jetson Lime TX Off actions
202301301
Set Band Bit 7 high when Pluto BandViewer is in use
202301300
Add Jetson H265 encoding from Blackmagic ATEM Mini Pro USB
Add Blackmagic ATEM Mini Pro USB viewing to Portsdown HDMI Viewer
202301141
Separate Jetson TX scripts from RPi TX Scripts
202301140
Add Command line .wav file replay on LimeSDR Mini
202301120
Add 500 kHz Span Width to RTL-SDR BandViewer
202301100
Implement Web View for Power Meter and XY Display
202301090
Web Control Improvements from M0DNY
202301080
Correct Span Width in RTL-SDR BandViewer
202301020
Full release of DMM Display/Logger
202212210
Allow Web Control with no touchscreen fitted
202212140
Allow Boot to BandViewer to find all supported SDRs
Tidy Pilot selection (may still not work)
202212100
Pin VLC for archive version
Add Repeater TX Watchdog Functions
Improve Shutdown Script
202211203
Fix direct selection of Pluto BandViewer
202211202
Add Pluto BandViewer 5th Harmonic mode (30 GHz)
202211201
Minor corrections to Pluto BandViewer
202211200
Add Pluto BandViewer
Web view (not control) of BandViewer
202211160
Upgrade basic OS for new builds
Minor RTL-SDR BandViewer Improvements
Adjust smoothing for Bandviewer 20dB ranges
202210230
Add Proof of Concept DMM Display/Logger
202209280
Add File Menu (access from Menu 2)
Add File Explorer with viewers/players
Add File copy/paste/rename function
Add listing of connected USB devices
202209070
Add CamLink 4K HDMI Dongle H264 LimeSDR TX Capability
202208290
Add File chooser for TS Files
202208240
Add AD9850 DDS to SigGen output devices
202208220
Grey-out Pluto/Lime/Express button on Menu 1 if not connected to USB
202208120
Add ability to cancel Pluto reboot wait
Add web control of SigGen
202207190
Initial support for Elgato CamLink4K HDMI dongle with LimeSDR
202207150
Release RTL-SDR BandViewer
202207130
Unhold VLC and update to latest version which now works with Portsdown
202206220
Roll back and hold VLC to version 3.0.12
Undo cancel of Pluto reboot wait (needs improvement before release)
202206180
Dev RTL-SDR Viewer
Enable cancel of Pluto reboot wait
202205250
Correct DVB-S2 FEC Indication on Info Screen
202205050
Add 5th bit to bandswitching options
Upgrade Basic OS for new builds
202204240
Add Wifi Control functions to touchscreen Menu
202204190
Add LimeRFE control
202204110
Increase compatibility of USB mic gain setting
Minor Pluto transmit bugfixes
Set default Longmynd timeout and reset to 5 seconds
202203291
Bugfix Boot to Langstone V2
202203290
Correct Touch map for DVB-T
Airspy Bandviewer enhancements
Basic support for PolyComm EagleEye Webcam
202203210
Display RX Touch Map briefly on RX selection
Initial version of Airspy Bandviewer
202203071
Initial Implementation of Web Access
Support for DFRobot 5 inch Screen
Integrate Langstone V2 (for LimeSDR and Pluto)
Support "/" in Pluto-generated DVB-S/S2 Service Info
202202240
Partial implementation of Web Access
Update new builds to use Buster Legacy OS
202201110
Update git clone to use https in install file
202112210
Enable PiCam Image Inversion in all modes
202111200
Add experimental Frequency Sweeper
XY Display Enhancements
202111120
Add DVB-T for LimeSDR USB
Correct port selection for LimeSDR USB on Bandview and NF Meter
Bugfix NF Meter readings after calibration
Add XY Display
202110301
Enable USB and EasyCap Audio with Pluto C920 DVB-S and DVB-S2
Correct receiver touchscreen exit message
Add cability to change the testcard image from Menu 3
Experimental VLC-based Stream Viewer
Add C930e Webcam Support
Experimental Noise Figure Meter
202109051
Add Receiver VLC Volume Control from Touchscreen
Declutter rpidatv/scripts/configs folder
202109010
Add option to invert Pi Cam Image
Use bespoke avc2ts for 7 inch screen to impove viewfinder
Pre-load bandviewer wisdom file in new builds
202108162
Support all 3 versions of C920 WebCam (and C930e?)
Add Some C930e and C525 Support
Enable streaming from Webcams
BugFix Pluto Video input 16:9
Allow system update release info change
202108011
Bugfix 20 minute LongMynd scan lock-up
Enable 16:9 streaming from Test Card and Pi Cam
Power meter enhancements
202107222
Display MiniTiouner RF Input Level on Receive
Display exact received SR
Add DVB-S2 no-scan RX mode
Bugfix Pluto EasyCap 16:9 mode
Disable receiver re-scan timeout by default in new builds
Add Power Meter and Test Equipment Menu
202107100
Enable 16:9 Streaming from Comp Vid
Increase keyboard input error-checking
Enable Pluto IP Address entry for Langstone
202107060
Report Config File Errors on-screen
202107050
Correct DVB-T Transmit Frequency Calculation
202107040
Update LongMynd to latest version
Add VLC reset and scan width setting to LongMynd receiver control
202107011
Enter Transverter IF Drive Freq, not TX freq, at keyboard
Implement new Band Switching
Error-check config file lookups
202106061
Minor Receive Menu Correction
202106060
Add direct entry to BandViewer on RX frequency from terrestrial receive menu
202105310
Add Contest Number Management for multiple Sites
Add LimeSDR Mini to SigGen output devices
BandViewer GUI improvements and early version of NF Indicator
202105190
Add the NORT SLO and ADF4153 as output options for the Signal Generator
202104270
Add boot to Band Viewer option
Tidy Band Viewer source and compile during install and update
Use Raspios Buster Lite 2021-03-04 for new builds
202104250
Enable LimeSDR USB with bandViewer
BandViewer Enhancements
Fix MPEG-2 PiCam Audio
202104102
Set GPIO pin 21 low on Portsdown selection (is high for Langstone)
Enable ext attenuator with Pluto and make changes immediate on entry
Cure TX over-run with Pluto Test Card
Check Pluto available when required
Menu-driven Pluto Firmware check
Menu-driven Pluto CPU Check and Update
Trigger and monitor Pluto reboots when required
BugFix Langstone install feedback to user
Bugfix 1.7 MHz DVB-T reception
Add Experimental LimeSDR Mini Band Viewer
Add Experimental LimeSDR Mini DVB-T TX capability
202102250
Improve EasyCap H264 transmissions on LimeSDR and Express
Introduce Repeater TX Mode for Portsdown 4
202102150
Correct Pluto IP Keyboard Entry routine
Refer to Pluto numeric IP rather than pluto.local
202101310
Add DVB-T transmit capability for Pluto
New builds based on Raspios 2021-01-11
Update Limesuite Version
Tidy LimeFPGA builds and add Calibration Warning
Display Required TS Bitrate on Info Screen
Display C920 type on Info Screen
Add selection of TS Video Channel on Receive
Improve Jetson HDMI video quality
Enable IPTS Input for Pluto DVB-S/S2 and DVB-T
202101090
Add Knucker DVB-T receive capability
Add variable longmynd timeout
Add RTL-SDR to the installation
Update new-build Raspios version and presets
Configurable TS IP, port and file selections
202011290
Reduce contrast in all EasyCap modes to prevent white crushing
202010260
Bugfix occasional partial menu backgrounds
Add initial ADF5355 SigGen Code
202010170
Update LongMynd version for reliability with new tuners
Add Pluto 5th Harmonic SigGen
202010120
Add Pluto SigGen (and Express and Elcom)
Add Pluto Settings
202010040
Modify Band LSB and ADF4351 LE GPIOs
Add Initial ADF4351 Sig Gen Capability
Reduce dhcp timout for new builds
Blink display on successful snap
Use Raspios Buster Lite 2020-08-20 for new builds
202009130
Add LKV373A HDMI input for Pluto and streaming outputs
Add LKV373A HDMI monitor
Change IPTS monitor to use VLC
202009010
Correct Pluto PTT
Add Jetson Nano build
202008231
Prevent reboot hang if Pluto not connected
Add Pluto Contest and Desktop modes
Add Mic Gain setting on Menu 3
Correct Receiver parameter display behaviour
Add Pluto Config Menu
Increase Lime Transmit delay to 12 seconds
Add Pluto support for newer C920 and very old C170 Webcams
Add H264 16:9 modes
202008051
Minor Bugfixes and Tidying up
Add PiCam, Comp Vid and Contest Number inputs for Pluto
Set Mic gain to 87% at gui start up
202008013
Correct Update Scripts
20200801
Experimental support for Pluto in Test Card and WebCam H264 modes
Add vlc with ffmpeg receive player
Overlay of parameters on vlc ffmpeg
Enabled MER display for DVB-S reception
Large MER on UDP player page
Receive freq entered and displayed in MHz
Bugfix intermittent stream display fault
Bugfix tuner power control
Switch default audio output from Menu 3
EasyCap Comp Video display with audio
PTT pin set for LimeDVB TX modes when selected from console
202008010
First Portsdown 4 build
202006011
Major Graphics Update
202005310
Initial A27 build for RPi 4 with langstone
LongMynd Receiver only
202005110
Improve EasyCap audio
202004302
Preserve Lime Calibration Status during updates
202004301
Graceful shutdown for VLC
202004300
LongMynd LNB voltage control and MiniTiouner Express support
VLC Player for limited H265 display in LongMynd
Revised Comp Video monitor (display of EasyCap input)
Pi Cam and C920 monitor modes
Screen capture for LongMynd, Comp Video, Pi Cam
Screen capture for C920, TS and Stream Viewers
Automatic graphics restart after graphics crash
Use 2020-02-13 Version of Buster Lite
202003301
Reduce delay for DVB-S in LimeDVB mode
202003300
Add support for LimeSDR USB
202003280
Update LongMynd RX for new QO-100 Beacon
202003141
Correct Lime Transmit Stop from Console Menu
202003140
Added QO-100 Frequencies to Menu
Added keyedtxtouch mode
Adjust C920 Power Line Frequency
202002290
Add IPTS Viewer
Correct format of null packets in limesdr_dvb.cpp
Reduce frame rate for C920
Lime Carrier Mode restored
202002142
Correct LimeDVB Output level at 1000 kS
202002141
Rotate 7 inch Screen and other bug fixes
202002140
Based on Buster 2020-02-05
H264 encoding for BATC Streamer corrected
Added C920 as working video source
202001310
Update to LimeSuite 20.01
Initial Buster Release
LimeDVB with some modes released
Repeater TX mode implemented
New Touchscreen Menu for Lime Config
Lime Config Menu added to Console
Calibration switching implemented
Cured retransmit on configuration touch after transmit deselection
Corrected display of DVB-S2 FECs on Info Screen
201912100
Add Autoset of LNB Offset for LongMynd
Grey-out unavailable video source buttons
Cure file handle leak
Prep for Migration to Buster
201910230
Display Additional Receive Parameters
Improve receive display appearance and behaviour
201910102
Allow dist-upgrade and correct auto-start bug
Add button to generate comp video with 7 inch screen
Add separate attenuator and lime/express level buttons
Set attenuator properly from Console Menu
Allow independent input selection for satellite and terrestrial RX
Error check Sat LNB offset
LeanDVB now selected from menu 2
12-hourly reboot for keyed TX mode
201909210
Initial release of LongMynd Receiver Integration
201907272
Audio out enabled on LimeNET Micro
Allow 33KS TX selection
Handle DVB-S2 FECs better
Allow 16:9 Comp Vid H264 with C920 connected
Don't call dist-upgrade in install and update (to avoid 3.5 touchscreen issue)
201907070
Basic support for LimeNET-Micro
Preparation for receive using MiniTiouner and LongMynd code
Fix for Waveshare Touchscreen problem
201906060
Overide RPi GPIOs when Express GPIOs 16-31 selected
Improve IPTS IN performance with LimeSDR
Jetson H264 and Pi Cam Support
Jetson C920 Webcam support at 500KS and below only
Jetson Config Menu
Delayed PTT switching on Jetson GPIO Pin 40
Added 16:9 Comp Vid H264 mode
201905090
Add DVB-S2 pilots on/off
Improve DVB-S2 selection labelling
Add binaries for limesdr_dvb
Add initial code for Jetson control
Add user-configurable buttons
Enable update from other GitHub users' repos
Store user's previous config after upgrade
201904290
For repeater streaming, moved 12-hourly reboot from app to cron
Repeater stream processes killed before restarting stream after failure
Added menu alias to call console menu without typing path
Error-check and correct all DVB-S2 FEC selections in console menu
Fix LimeSDR reset after TX in console menu
201904200
LimeSDR reliability Improvements
Allow fractional MHz Transverter Offset
Lime FW Update checks or warns for internet connection
Contest number appearance improvement
Console menu improvements for Lime DVB-S2
Animated Test card resized for 7 inch display
LeanDVB Receive stability improvement
Correct update H264 error for older versions
Based on Stretch Lite 2019-04-08
201903250
Improve H264 Audio with LimeSDR
New scripts for network remote control from Windows
Upgrade LimeSuite to 19.01 (requires Lime FW upgrade)
201902250
Fix DVB-S2 FEC 1/4
Fix webcam streaming with H264 selected
Add console menus for DVB-S2, FECs and LimeGain
Enable delayed PTT for Lime from console and keyedTX
Set all SR lines high to indicate transmit with LimeSDR, not F-M board
201902072
Fix keyedTX bug
201902070
Automatic driver switch and reboot for 7 inch screen
C920 driver load after boot (can now co-exist with Pi Cam)
Reboot and Rotate function for 7 inch screen
Hardware ShutDown Button can be enabled from touch screen
Save to USB updated and available from touchscreen
Save settings to /boot added
Lime selection from Console
Lime Test Report from Touchscreen
Force Lime FW update added to touchscreen
Toggle force_pwm_open facility to enable TX after sound use
USB sync not disabled on initial install
201812290
Correct RPi PTT operation with LimeSDR
Tidy Menu buttons
201811300
Lime install by default
Lime upsampling and GPIO support
Correct Streamer watchdog permissions
Correct high-side LO transverter calculations
201811170
Use new avc2ts in all H264 modes except C920 and Streaming
Update to latest Raspbian Version
Display Touch buttons during Animated Test Card transmission
Highlight output sources after selection
201811100
Experimental Support for DVB-S2 modes with Lime
Experimental support for Lime USB (in addition to Lime Mini)
Enabled caption on PiCam Streamer Output
Corrected streamer fail-to-start after use of H264 RF modes
Added System Menu with "Restore to Factory Settings"
Improved hardware shudown button response time
Multiple Touchscreen Menu improvements
Added Menus and buttons for candidate future capabilities
201811030
Implement Repeater Streamer Watchdog
201810270
Initial implementation of H264 encoding with audio
Nightly streamer reboot
Reduce "popping" on streamer audio
Improve C920 selection logic
Correctly load Lime Gain after boot
201810180
ADF4351 Max Ref Freq raised to 250 MHz
Experimental support for Logitech C310 Webcam
Menu 3 button added to Menu 1
Corrected Console Menu for new BATC Stream
Video Monitor function (requires MPEG-2 license)
201809152
Reduce chances of reboot hang on update and change message
201809150
Define and store rtl-sdr gain
Fix rtl-sdr frequency setting bug
Fix factory reset bug
Enable stream set-up and selection from Menu 3
201809050
Update dtblob.bin and RPi Version file to prevent shutdown hang
Set swapoff before shutdown or reboot to prevent shutdown hang
Install random number tools to prevent wget hang on checking for update
Bugfix stream display after info screen selection
Do not update kernel until mmal and IL bugs are fixed
201807290
Introduce Stream to Video appliance with "Stream Valid" signal
Major Improvements to touchscreen stream display
More LimeSDR prep
201807150
Add BATC Streamer Display Function
Resize H264 testcards for 7 inch display
Provide warning when Portsdown TX not available after audio usage
Correct FEC when switching from Lime to other output
Do not start the framebuffer copy for 7 inch display
201807090
LeanDVB Performance Improvements
Bugfix BATC Streamer label
Bugfix LeanDVB Preset storage
Prep for LimeSDR USB
201807040
New receive menu to allow independent selection of DATV receive parameters
MPEG-2 DATV receive capability after purchase and installation of key
Programmable ADF4351 output during receive for upconverters
Direct transmit frequency entry from frequency selection menu
New "clear" key on keyboard to clear entry line
USB disk automount enabled by default in Raspbian Stretch
10-character locator used as basis for locator change
Old BATC Streamer removed from output menu.
201805152
Bugfix for the "Boot to stream" startup problem in Stretch
201805150
Added new menu for Composite Video Output
More test cards and all video snaps available from video output
Sound pass-through for Comp Video out is routed to USB Audio
RTL-FM audio is routed to USB Audio if present (else RPi audio)
SnapView modified to access all video snaps
Added Locator range and bearing calculator
Menu modifications in preparation for future LimeSDR Mini support
201804250
Adds comprehensive RTL_FM voice receiver (see Menu 2)
Corrects Testrig for Stretch build
Corrects SigGen Express Cal above 2000 MHz
Rejects zero-length callsign
More visibility of DATV Express start-up
Reduces occurences of 90-sec shutdown wait in Stretch
Improves utils compile scripts
201804060
Repairs the linkage between frequency and band in the Console Menu
Element 14 7 inch Display improvements:
Does not erroneously load TonTec driver
Implements VideoView without flicker (but at 1.5 fps)
Allows cursor operation similar to a touchpad in FreqShow
Reduces info text size to fit
201804021
Adds support for Logitech C270 Webcam
Adds variable reset delay for webcams
Updated Test Rig software
Info screen improvements
Set Call, locator and PIDs from touchscreen
Set and select ADF Ref from touchscreen
Commence software update from touchscreen
201803270
This build forks to support Raspbian Stretch and the RPi3+
Adds Country to Wifi Script and uses ip commands
Change compile options for GUI apps
Change config for pygame install
201803181
Adds support for Logitech C910 Webcam
201803180
Handles Logitech C525 post-transmit reset better
Corrects USB Mic selection when Webcam connected
201803061
Adds Webcam as a separate switched video and audio source
Logitech C920, C525 and C170 webcams work as video sources
Makes test cards and contest numbers available for both H264 and MPEG-2
Adds some 16:9 and 720p modes
Enables caption on streaming modes and allows longer captions
Adds support for native 1080p H264 and audio streaming from the Logitech C920
SigGen supports the Elcom microwave oscillators (select ADF5355..)
New Logo
Keyboard improvements
201802202
Restores "save-to-USB" capability
Enables C920 Webcam
Instant band switching
Decreases Attenuator spi clock frequency for reliability
Corrects bug that did not copy presets across on upgrade
201802041
Major touchscreen menu re-write
Introduces new gui sub-menus for parameter and config selection
Introduces attenuator and transverter switching
Introduces stored preset configurations
Initialises spi GPIO ports on GUI start-up
Corrects ADF4351 and Attenuator spi timing to improve reliability
Corrects FileTS failure to cease transmitting
Adds partial support (Video only) for Logitech C525 and C270 Webcams
201801220
Introduces new gui sub-menus for parameter and config selection
Major menu rewrite in prep for transverter switching
Initialises spi GPIO ports on GUI start-up
Corrects ADF4351 and Attenuator spi timing to improve reliability
Add partial support (Video only) for Logitech C525 and C270 Webcams
201801061
Introduces attenuator option for Portsdown output in SigGen
Adds attenuator option to Portsdown and ADF4351 modes in SigGen
Enables DATV Express SigGen
Enables 333KS QPSK mod for Portsdown and ADF4351 modes in SigGen
Cures multiple overlays of receive parameters
Single touch exit from receive to Main Menu
201801012
Introduces scheduler.sh to switch between rpidatv, siggen & FreqShow
Adds a Display option for the Element14_7
Resizes CAMMPEG-2 viewfinder for Element14_7 display
Enables IPTS output for MPEG-2 modes
Corrects higlights on Menu 2
Introduces FreqShow Spectrum display
201712181
Complete rewrite of touchscreen touch response function
Adds Menu Titles
Adds Switchable 480p Output in CAMMPEG-2 and ANALOGMPEG-2
Moves Caption and Adds Locator if 480p selected
Fixes "Oversize test cards in Carousel"
Enables IPTS input to DATV Express Output
Disables option to turn the Viewfinder Off
201711270
Adds CARDMPEG-2 and CAMHDMPEG-2 modes
Properly scales PiCam MPEG-2 viewfinder for all resolutions
Fixes "Mode Buttons not diabled during TX" bug
Fixes "Test mode remains transmitting after deselection" bug
201711030
Adds Touchscreen Calibration
Enables Boot to SigGen on
Adds Display mode for upside down Waveshare 4
Fixes 1 Mhz steps bug in Sig Gen
201710280
Introduces an early version of the Signal Generator
Adds a DTX-1 Output Select button on Touchscreen Menu 2
Adds compilation scripts for users in ~/rpidatv/scripts/utils
201710081
Include RTL-FM functions on Menu 3
Add RTL-TCP Server
Adds voltage monitor to Info page
Re-enable DTX-1 Output for testing
Experimental support for signal monitoring at 2MS
Unattended streaming auto restarts after crashes
Transmission can be initiated and stopped with a GPIO switch
Makes video Snap and View modes work with no PiCam
Improves video View mode for Waveshare users
201708150
Introduces dedicated streaming mode with hardware on/off switch
Introduces still capture from composite video
Introduces preview mode for composite video (about 1.1 fps)
Introduces review of last 5 captured stills