move to new cspot

This commit is contained in:
philippe44
2023-03-25 16:48:41 -07:00
parent c712b78931
commit 008c36facf
2983 changed files with 465270 additions and 13569 deletions

View File

@@ -1,17 +1,11 @@
#ifndef PACKET_H
#define PACKET_H
#pragma once
#include <vector>
#include <cstdint>
#include <vector>
class Packet
{
private:
public:
Packet(uint8_t command, const std::vector<uint8_t> &data);
uint8_t command;
std::vector<uint8_t> data;
namespace cspot {
struct Packet {
uint8_t command;
std::vector<uint8_t> data;
};
#endif
} // namespace cspot