added reverser
This commit is contained in:
18
src/ir_reverser/.gitignore
vendored
Normal file
18
src/ir_reverser/.gitignore
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
out/
|
||||
libs/
|
||||
obj/
|
||||
.idea/
|
||||
ipch/
|
||||
x64/
|
||||
cmake-build-debug/
|
||||
cmake-build-release/
|
||||
Debug/
|
||||
Release/
|
||||
*.sdf
|
||||
*.opensdf
|
||||
.DS_Store
|
||||
.vs
|
||||
ir_decoder.vcxproj.user
|
||||
irda_decoder.exe.stackdump
|
||||
ir_decoder.VC.db
|
||||
ir_decoder.VC.VC.opendb
|
||||
8
src/ir_reverser/CMakeLists.txt
Normal file
8
src/ir_reverser/CMakeLists.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
project(ir_reverser)
|
||||
|
||||
set(CMAKE_C_STANDARD 99)
|
||||
|
||||
set(SOURCE_FILES src/ire_test_main.c
|
||||
include/ire_tv_protocol_def.h)
|
||||
add_executable(ir_reverser ${SOURCE_FILES})
|
||||
29
src/ir_reverser/include/ire_tv_protocol_def.h
Normal file
29
src/ir_reverser/include/ire_tv_protocol_def.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/**************************************************************************************
|
||||
Filename:
|
||||
Revised: Date: 2017-01-09
|
||||
Revision: Revision: 1.0
|
||||
|
||||
Description: This file contains definitions of P-R format protocols
|
||||
|
||||
Revision log:
|
||||
* 2017-01-09: created by strawmanbobi
|
||||
**************************************************************************************/
|
||||
|
||||
#ifndef IR_REVERSER_IRE_TV_PROTOCOL_DEF_H
|
||||
#define IR_REVERSER_IRE_TV_PROTOCOL_DEF_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
||||
} protocol;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //IR_REVERSER_IRE_TV_PROTOCOL_DEF_H
|
||||
17
src/ir_reverser/src/ire_test_main.c
Normal file
17
src/ir_reverser/src/ire_test_main.c
Normal file
@@ -0,0 +1,17 @@
|
||||
/**************************************************************************************
|
||||
Filename:
|
||||
Revised: Date: 2017-01-09
|
||||
Revision: Revision: 1.0
|
||||
|
||||
Description: This file provides ir reverse test entry functions
|
||||
|
||||
Revision log:
|
||||
* 2017-01-09: created by strawmanbobi
|
||||
**************************************************************************************/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello, World!\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user