Merge commit '6d0a62920410f50d7f6707960ca1ca0c8fd1d1fa' into firmware21
This commit is contained in:
46
platforms/webusb.h
Normal file
46
platforms/webusb.h
Normal file
@@ -0,0 +1,46 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifndef FIRMWARE_VERSION
|
||||
#define FIRMWARE_VERSION u8"default"
|
||||
#endif
|
||||
#define WEBUSB_STOP_BIT -2
|
||||
#define WEBUSB_BLINK_STEPS 512
|
||||
#define WEBUSB_BLINK_END WEBUSB_BLINK_STEPS * 60
|
||||
|
||||
void webusb_receive(uint8_t *data, uint8_t length);
|
||||
void webusb_send(uint8_t *data, uint8_t length);
|
||||
void webusb_layer_event(void);
|
||||
void webusb_error(uint8_t code);
|
||||
void webusb_set_pairing_state(void);
|
||||
bool webusb_receive_quantum(uint8_t *data, uint8_t length);
|
||||
|
||||
typedef struct{
|
||||
bool paired;
|
||||
bool pairing;
|
||||
} webusb_state_t;
|
||||
|
||||
extern webusb_state_t webusb_state;
|
||||
|
||||
enum Webusb_Status_Code {
|
||||
WEBUSB_STATUS_NOT_PAIRED = -1,
|
||||
WEBUSB_STATUS_OK,
|
||||
WEBUSB_STATUS_UNKNOWN_COMMAND,
|
||||
WEBUSB_STATUS_SAFE_RANGE,
|
||||
};
|
||||
|
||||
enum Webusb_Command_Code {
|
||||
WEBUSB_CMD_PAIR,
|
||||
WEBUSB_CMD_GET_FW_VERSION,
|
||||
WEBUSB_CMD_SAFE_RANGE,
|
||||
|
||||
};
|
||||
|
||||
enum Webusb_Event_Code {
|
||||
WEBUSB_EVT_PAIRED,
|
||||
WEBUSB_EVT_FW_VERSION,
|
||||
WEBUSB_EVT_SAFE_RANGE,
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user