Optional manually defined power scale
This commit is contained in:
12
gopow.go
12
gopow.go
@@ -14,7 +14,7 @@ func main() {
|
||||
app := cli.NewApp()
|
||||
app.Name = "RTL GoPow"
|
||||
app.Usage = "Render a rtl_power CSV output as waterfall image"
|
||||
app.Version = "0.0.2"
|
||||
app.Version = "0.0.3"
|
||||
app.Author = "github.com/dhogborg"
|
||||
app.Email = "d@hogborg.se"
|
||||
|
||||
@@ -68,6 +68,16 @@ func main() {
|
||||
Value: "png",
|
||||
Usage: "Output file format, default png [png,jpeg]",
|
||||
},
|
||||
cli.Float64Flag{
|
||||
Name: "max-power",
|
||||
Value: 0,
|
||||
Usage: "Define a manual maximum power (format nn.n)",
|
||||
},
|
||||
cli.Float64Flag{
|
||||
Name: "min-power",
|
||||
Value: 0,
|
||||
Usage: "Define a manual minimum power (format nn.n)",
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "verbose",
|
||||
Usage: "Enable more verbose output",
|
||||
|
||||
Reference in New Issue
Block a user