Beginning of code for the RSPduo + bugfix for the hackrf

This commit is contained in:
Ryzerth
2021-04-10 03:06:51 +02:00
parent aeab33127d
commit 26e623bec4
11 changed files with 796 additions and 43 deletions

View File

@@ -8,7 +8,7 @@
namespace ImGui {
class SymbolDiagram {
public:
SymbolDiagram();
SymbolDiagram(float _scale = 1.0f);
void draw(const ImVec2& size_arg = ImVec2(0, 0));
@@ -19,6 +19,7 @@ namespace ImGui {
private:
std::mutex bufferMtx;
float buffer[1024];
float _scale;
};
}