Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 wiersze
516B

  1. //go:build !soapy
  2. package soapysdr
  3. import (
  4. "fmt"
  5. "github.com/jan/fm-rds-tx/internal/platform"
  6. )
  7. // NewNativeDriver is not available without the soapy build tag.
  8. func NewNativeDriver() platform.SoapyDriver {
  9. return nil
  10. }
  11. // Enumerate is not available without the soapy build tag.
  12. func Enumerate() ([]map[string]string, error) {
  13. return nil, fmt.Errorf("soapysdr: not compiled with -tags soapy")
  14. }
  15. // Available reports whether SoapySDR native support was compiled in.
  16. func Available() bool {
  17. return false
  18. }