mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-06 16:47:59 +08:00
- faster FFT implementation - built-in Direct Sequence Spread option - remove <map> dependency from implementation - update arduino-rx example
16 lines
423 B
C++
16 lines
423 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
class GGWave;
|
|
|
|
// GGWave helpers
|
|
|
|
void GGWave_setDefaultCaptureDeviceName(std::string name);
|
|
bool GGWave_init(const int playbackId, const int captureId, const int payloadLength = -1, const float sampleRateOffset = 0, const bool useDSS = false);
|
|
std::shared_ptr<GGWave> GGWave_instance();
|
|
void GGWave_reset(void * parameters);
|
|
bool GGWave_mainLoop();
|
|
bool GGWave_deinit();
|