diff services/dar/dar_gen.h @ 0:75a11d740a02

initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 Jun 2016 00:02:41 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/services/dar/dar_gen.h	Thu Jun 09 00:02:41 2016 +0000
@@ -0,0 +1,44 @@
+/******************************************************************************/
+/*                                                                            */
+/*    File Name:   dar_gen.h                                                  */
+/*                                                                            */
+/*    Purpose:     This file contain general definitions of DAR Module.       */
+/*                                                                            */
+/*    Note:                                                                   */
+/*        None.                                                               */
+/*                                                                            */
+/*    Revision History:                                                       */
+/*       9 October 2001      Stephanie Gerthoux        Create                 */
+/*                                                                            */
+/* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved. */
+/*                                                                            */
+/******************************************************************************/
+
+#ifndef __DAR_GEN_H__
+#define __DAR_GEN_H__
+
+   #include "../../riviera/rv/general.h"
+
+
+   /**** Type definitions ****/
+
+   /** Dar data format : ASCII or binary **/ 
+   typedef INT8 T_DAR_FORMAT;
+   /* possible values */
+   #define DAR_ASCII_FORMAT     (0)   /* ASCII format */
+   #define DAR_BINARY_FORMAT    (-1)  /* Binary format */
+
+   /** DAR data level ( Error / Warning / Debug) **/
+   typedef UINT8 T_DAR_LEVEL;
+
+   typedef UINT8* T_DAR_BUFFER;
+
+   typedef char T_DAR_INFO;
+
+   /** DAR callback function **/
+   typedef void (*DAR_CALLBACK_FUNC)(T_DAR_BUFFER, UINT16);
+
+   /** DAR Level Default definition **/
+   #define DAR_LEVEL_DEFAULT     (DAR_ERROR)
+
+#endif