Realtime Plot shows last 60s, not last 10s

The realtime plot was originally set to only show the
last 10s of activity to reduce CPU overhead.

In reality, the CPU overhead for the plot is minimal,
especially when anti-aliasing is disabled.

This update modifies the plot to show the last 60s of
data, instead of the rather restrictive 10s.
This commit is contained in:
Mark Liversedge
2011-12-30 18:39:42 +00:00
parent 6c242dd64f
commit 0d06ad613a

View File

@@ -31,7 +31,7 @@
#include <qwt_data.h>
#include "Settings.h"
#define MAXSAMPLES 50
#define MAXSAMPLES 300
class Realtime30PwrData : public QwtData
{