This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/workers/sender.h

20 lines
362 B
C
Raw Normal View History

2024-09-08 23:16:37 -05:00
// Define once
#ifndef H_SENDER
#define H_SENDER
// Libraries
#include <furi.h>
#include <furi/core/thread.h>
#include <furi_hal.h>
#include <furi_hal_usb_hid.h>
#include "../backend/base.h"
// Functions
FuriHalUsbInterface* sender_init();
void sender_free(FuriHalUsbInterface* usb_mode_prev);
void sender_execute(char* buffer);
void sender_return();
#endif