Wideband autonomous SDR analysis engine forked from sdr-visual-suite
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
551B

  1. package gpudemod
  2. import "unsafe"
  3. type nativeStreamingSignalState struct {
  4. signalID int64
  5. configHash uint64
  6. decim int
  7. numTaps int
  8. dInNew unsafe.Pointer
  9. dShifted unsafe.Pointer
  10. dOut unsafe.Pointer
  11. dTaps unsafe.Pointer
  12. dHistory unsafe.Pointer
  13. dHistoryScratch unsafe.Pointer
  14. inNewCap int
  15. shiftedCap int
  16. outCap int
  17. tapsLen int
  18. historyCap int
  19. historyLen int
  20. historyScratchCap int
  21. phaseCount int
  22. phaseNCO float64
  23. }