100000 points are desirable when charting IQ samples.

This commit is contained in:
feyris-tan 2025-07-27 21:03:56 +02:00
parent e140175289
commit c7188b56c5

View File

@ -10,6 +10,7 @@ namespace skyscraper8.Skyscraper.Drawing
{
public class IqChartData
{
public const int DESIRABLE_AMOUNT_OF_POINTS = 100000;
private IqChartData()
{
IQ = new byte[256][];
@ -55,7 +56,7 @@ namespace skyscraper8.Skyscraper.Drawing
{
get
{
return totalSamples >= 100000;
return totalSamples >= DESIRABLE_AMOUNT_OF_POINTS;
}
}