You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
196B

  1. //go:build !sdrplay
  2. package sdrplay
  3. import "sdr-visual-suite/internal/sdr"
  4. func New(sampleRate int, centerHz float64, gainDb float64) (sdr.Source, error) {
  5. return nil, sdr.ErrNotImplemented
  6. }