1
0
mirror of https://github.com/seahu/rflink.git synced 2025-12-10 07:57:23 +01:00
Files
rflink_rPi/RPi_rflink/RawSignal.h
Ondrej Lycka 406093e31d first commit
2017-04-29 03:27:02 +02:00

22 lines
399 B
C

#ifndef _RawSignal_h
#define _RawSignal_h
#include "./arduino/types.h"
// flag for end RawSignal thread
extern bool enableRawScan;
//global use prototypes:
int StartScanEventTheader();
int StopScanEventTheader();
void RFLinkHW( void );
void RawSendRF(void);
//local use prototypes:
void enableReceive();
void disableReceive();
boolean ScanEvent();
void setRawSignal(int RawCodeLength);
#endif