mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 02:08:36 -07:00
Samsung stuff is actually called EasySetup
This commit is contained in:
25
applications/external/ble_spam/protocols/easysetup.h
vendored
Normal file
25
applications/external/ble_spam/protocols/easysetup.h
vendored
Normal 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;
|
||||
Reference in New Issue
Block a user