summaryrefslogtreecommitdiff
path: root/halimpl/include/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'halimpl/include/device.h')
-rw-r--r--halimpl/include/device.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/halimpl/include/device.h b/halimpl/include/device.h
new file mode 100644
index 0000000..99ec3b6
--- /dev/null
+++ b/halimpl/include/device.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2013 SAMSUNG S.LSI
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ *
+ */
+
+#include "hal.h"
+#include "osi.h"
+
+int device_init(int data_trace);
+void device_deinit(void);
+int device_open();
+void device_close(void);
+int device_set_mode(eNFC_DEV_MODE mode);
+int device_sleep(void);
+int device_wakeup(void);
+int device_write(uint8_t* data, size_t len);
+int device_read(uint8_t* buffer, size_t len);
+void data_trace(const char* head, int len, uint8_t* p_data);