aboutsummaryrefslogtreecommitdiff
path: root/pdl/include/pdl_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'pdl/include/pdl_command.h')
-rw-r--r--pdl/include/pdl_command.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/pdl/include/pdl_command.h b/pdl/include/pdl_command.h
new file mode 100644
index 0000000000..08e8b66bed
--- /dev/null
+++ b/pdl/include/pdl_command.h
@@ -0,0 +1,15 @@
+#ifndef _PDL_COMMAND_H_
+#define _PDL_COMMAND_H_
+#include "config.h"
+#include "packet.h"
+
+
+#if defined(CONFIG_RDA_PDL1)
+#include "../pdl-1/pdl1_command.h"
+#elif defined(CONFIG_RDA_PDL2)
+#include "../pdl-2/pdl2_command.h"
+#else
+#error "no valid pdl"
+#endif
+
+#endif