1
0
mirror of https://github.com/seahu/rflink.git synced 2025-12-10 07:57:23 +01:00

first commit

This commit is contained in:
Ondrej Lycka
2017-04-29 03:27:02 +02:00
commit 406093e31d
85 changed files with 25806 additions and 0 deletions

16
RPi_rflink/Misc.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _misc_h
#define _misc_h
#include "Base.h"
#define HEX 1
unsigned long str2int(char *string);
int str2cmd(char *command);
float ul2float(unsigned long ul);
void PrintHex8(uint8_t *data, uint8_t length);
void PrintHexByte(uint8_t data);
byte reverseBits(byte data);
#endif