20 lines
No EOL
362 B
C
20 lines
No EOL
362 B
C
// 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 |