mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
18 lines
350 B
C
18 lines
350 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "core/cli/subcommand.h"
|
||
|
|
|
||
|
|
namespace satdump
|
||
|
|
{
|
||
|
|
class BitViewCmdHandler : public CmdHandler
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
int period;
|
||
|
|
|
||
|
|
public:
|
||
|
|
BitViewCmdHandler() : CmdHandler("bitview") {}
|
||
|
|
|
||
|
|
void reg(CLI::App *app);
|
||
|
|
void run(CLI::App *app, CLI::App *subcom, bool is_gui);
|
||
|
|
};
|
||
|
|
} // namespace satdump
|