Samsung stuff is actually called EasySetup

This commit is contained in:
Willy-JL
2023-10-21 05:06:58 +01:00
parent 27a213869a
commit 9e64065f07
8 changed files with 73 additions and 73 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
#include "_base.h"
// Hacked together by @Willy-JL and @Spooks4576
// Research by @Spooks4576
typedef enum {
EasysetupTypeBuds,
EasysetupTypeWatch,
EasysetupTypeCOUNT,
} EasysetupType;
typedef struct {
EasysetupType type;
union {
struct {
uint32_t model;
} buds;
struct {
uint8_t model;
} watch;
} data;
} EasysetupCfg;
extern const Protocol protocol_easysetup;