21 lines
389 B
C++
21 lines
389 B
C++
#ifndef SENSOR3_CONSOLE_H
|
|
#define SENSOR3_CONSOLE_H
|
|
|
|
#include <cstdint>
|
|
|
|
void consoleSetup();
|
|
|
|
void consoleLoop();
|
|
|
|
void consoleHandle(char *cmd);
|
|
|
|
bool patrix_command(char *cmd);
|
|
|
|
void consolePrintUsage();
|
|
|
|
bool setDouble(const char *name, double *destinationPtr, double min, double max);
|
|
|
|
bool setUint64_T(const char *name, uint64_t *destinationPtr, uint64_t min, uint64_t max);
|
|
|
|
#endif
|