rtdef.h 17.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * File      : rtdef.h
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://openlab.rt-thread.com/license/LICENSE.
 *
 * Change Logs:
 * Date           Author       Notes
 * 2007-01-10     Bernard      the first version
 * 2008-07-12	  Bernard	   remove all rt_int8, rt_uint32_t etc typedef
 */
#ifndef __RT_DEF_H__
#define __RT_DEF_H__

#include <rtconfig.h>

#ifdef __cplusplus
extern "C" {
#endif

24 25 26 27 28 29 30 31 32 33 34 35
/* RT-Thread version information */
#define RT_VERSION						3
#define RT_SUBVERSION					0

/* date type defination					*/
typedef signed 	 char  					rt_int8_t;
typedef signed 	 short 					rt_int16_t;
typedef signed 	 long  					rt_int32_t;
typedef unsigned char  					rt_uint8_t;
typedef unsigned short 					rt_uint16_t;
typedef unsigned long  					rt_uint32_t;
typedef int 							rt_bool_t;
36 37

/* 32bit CPU */
38 39
typedef long 							rt_base_t;
typedef unsigned long 					rt_ubase_t;
40

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/* RT-Thread definitions */
typedef rt_base_t						rt_err_t;		/* Type for error number.					*/
typedef rt_uint32_t						rt_time_t;		/* Type for time stamp. 					*/
typedef rt_uint32_t						rt_tick_t;		/* Type for tick count. 					*/
typedef rt_base_t						rt_flag_t;		/* Type for flags. 							*/
typedef rt_ubase_t						rt_size_t;		/* Type for size number.					*/
typedef rt_ubase_t						rt_dev_t;		/* Type for device.							*/
typedef rt_uint32_t						rt_off_t;		/* Type for offset.							*/

/* RT-Thread bool type definitions 		*/
#define RT_TRUE 						1
#define RT_FALSE 						0

/* maximun value of base type 			*/
#define RT_UINT8_MAX					0xff			/* Maxium number of UINT8.					*/
#define RT_UINT16_MAX					0xffff			/* Maxium number of UINT16.					*/
#define RT_UINT32_MAX					0xffffffff		/* Maxium number of UINT32.					*/

#ifdef __CC_ARM                			 /* ARM Compiler 	*/
60
    #include <stdarg.h>
61 62
    #define SECTION(x)  				__attribute__((section(x)))
    #define UNUSED  					__attribute__((unused))
B
bernard.xiong 已提交
63
	#define ALIGN(n)					__attribute__((aligned(n)))
64
    #define rt_inline   				static __inline
65

66
#elif defined (__ICCARM__)        		/* for IAR Compiler */
67
    #include <stdarg.h>
68
    #define SECTION(x)  				@ x
69
    #define UNUSED
B
bernard.xiong 已提交
70
	#define ALIGN(n)					#pragma pack(n)
71
    #define rt_inline 					inline
72

73
#elif defined (__GNUC__)        		/* GNU GCC Compiler */
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    #ifdef RT_USING_NEWLIB
        #include <stdarg.h>
    #else
        typedef void *__sys_va_list;
        typedef __sys_va_list va_list;
        #define __va_rounded_size(type)	\
            (((sizeof (type) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
        #define va_start(ap, lastarg)	\
            (ap = ((char *) &(lastarg) + __va_rounded_size(lastarg)))
        #define va_end(ap)	((void)0)
        /*	little endian */
        #define va_arg(ap, type)	\
            (ap = (__sys_va_list) ((char *) (ap) + __va_rounded_size (type)),  \
            *((type *) (void *) ((char *) (ap) - __va_rounded_size (type))))
    #endif

90 91
    #define SECTION(x) 					__attribute__((section(x)))
    #define UNUSED 						__attribute__((unused))
B
bernard.xiong 已提交
92
	#define ALIGN(n)					__attribute__((aligned(n)))
93
    #define rt_inline 					static __inline
94 95 96 97 98
#elif defined (__ICCM16C__)        		/* for IAR EW M16C Compiler */
    #include <stdarg.h>
    #define SECTION(x)  				@ x
    #define UNUSED
    #define rt_inline 					inline
99 100
#endif

101 102
/* event length 			*/
#define RT_EVENT_LENGTH					32
103 104

/* memory management option */
105 106 107
#define RT_MM_PAGE_SIZE					4096
#define RT_MM_PAGE_MASK 				(RT_MM_PAGE_SIZE - 1)
#define RT_MM_PAGE_BITS					12
108 109 110 111 112 113

/**
 * @addtogroup Error
 */
/*@{*/
/* RT-Thread error code definitions */
114 115 116 117 118 119 120 121
#define RT_EOK							0				/* There is no error 						*/
#define RT_ERROR						1				/* A generic error happens 					*/
#define RT_ETIMEOUT						2				/* Timed out 								*/
#define RT_EFULL						3				/* The resource is full						*/
#define RT_EEMPTY						4				/* The resource is empty 					*/
#define RT_ENOMEM						5				/* No memory								*/
#define RT_ENOSYS						6				/* No system 								*/
#define RT_EBUSY						7				/* Busy										*/
122 123 124
/*@}*/

#ifdef RT_DEBUG
125 126
#define RT_ASSERT(EX)					if (!(EX)) {volatile char dummy=0; rt_kprintf("(%s) assert failed at %s:%d \n", \
										#EX, __FUNCTION__, __LINE__); while (dummy==0);}
127 128 129 130 131 132 133 134 135
#else
#define RT_ASSERT(EX)
#endif

/**
 * @def RT_ALIGN(size, align)
 * Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
 * would equal to 16. It is needed in some critical contexts.
 */
136
#define RT_ALIGN(size, align)			(((size) + (align) - 1) & ~((align)-1))
137 138 139 140 141

/**
 * @def RT_NULL
 * Similar as the \c NULL in C library.
 */
142
#define RT_NULL 						((void *)0)
143 144 145

struct rt_list_node
{
146 147
	struct rt_list_node 				*next;			/* point to next node. 						*/
	struct rt_list_node 				*prev;			/* point to prev node. 						*/
148
};
149
typedef struct rt_list_node rt_list_t;					/* Type for lists. 							*/
150 151 152 153 154 155 156 157 158 159 160

/**
 * @addtogroup KernelObject
 */
/*@{*/
/*
 * Base structure of Kernel object
 */
struct rt_object
{
	/* name of kernel object			*/
161
	char      	name[RT_NAME_MAX];
162 163 164 165 166 167 168
	/* type of kernel object 			*/
	rt_uint8_t  type;
	/* flag of kernel object			*/
	rt_uint8_t  flag;
	/* list pointer of kernel object 	*/
	rt_list_t	list;
};
169
typedef struct rt_object* rt_object_t;					/* Type for kernel objects. 				*/
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

/**
 *	The object type can be one of the follows with specific
 *	macros enabled:
 *	- Thread
 *	- Process
 *	- Semaphore
 *	- Mutex
 *	- Event
 *	- MailBox
 *	- MessageQueue
 *	- MemPool
 *  - Device
 *	- Timer
 *	- Unknown
 *	- Static
 */
enum rt_object_class_type
{
189
	RT_Object_Class_Thread = 0,							/* The object is a thread. 					*/
190
#ifdef RT_USING_SEMAPHORE
191
	RT_Object_Class_Semaphore,							/* The object is a semaphore. 				*/
192 193
#endif
#ifdef RT_USING_MUTEX
194
	RT_Object_Class_Mutex,								/* The object is a mutex. 					*/
195 196
#endif
#ifdef RT_USING_EVENT
197
	RT_Object_Class_Event,								/* The object is a event. 					*/
198 199
#endif
#ifdef RT_USING_MAILBOX
200
	RT_Object_Class_MailBox,							/* The object is a mail box. 				*/
201 202
#endif
#ifdef RT_USING_MESSAGEQUEUE
203
	RT_Object_Class_MessageQueue,						/* The object is a message queue. 			*/
204 205
#endif
#ifdef RT_USING_MEMPOOL
206
	RT_Object_Class_MemPool,							/* The object is a memory pool. 			*/
207 208
#endif
#ifdef RT_USING_DEVICE
209
	RT_Object_Class_Device,								/* The object is a device 					*/
210
#endif
211
	RT_Object_Class_Timer,								/* The object is a timer. 					*/
212
#ifdef RT_USING_MODULE
213
	RT_Object_Class_Module,								/* The object is a module. 					*/
214
#endif
215 216
	RT_Object_Class_Unknown,							/* The object is unknown. 					*/
	RT_Object_Class_Static = 0x80						/* The object is a static object. 			*/
217
};
218 219 220 221 222 223

/*
 * the information of the kernel object
 */
struct rt_object_information
{
224 225 226
	enum rt_object_class_type type;						/* object class type. 						*/
	rt_list_t object_list;								/* object list. 							*/
	rt_size_t object_size;								/* object size. 							*/
227 228 229 230 231 232 233 234 235 236 237
};
/*@}*/

/**
 * @addtogroup Clock
 */
/*@{*/

/*
 * clock & timer macros
 */
238 239 240 241
#define RT_TIMER_FLAG_DEACTIVATED		0x0				/* timer is deactive. 						*/
#define RT_TIMER_FLAG_ACTIVATED			0x1				/* timer is active. 						*/
#define RT_TIMER_FLAG_ONE_SHOT			0x0				/* one shot timer. 							*/
#define RT_TIMER_FLAG_PERIODIC			0x2				/* periodic timer. 							*/
242

243 244
#define RT_TIMER_FLAG_HARD_TIMER		0x0				/* hard timer,the timer's callback function will be called in tick isr. 	*/
#define RT_TIMER_FLAG_SOFT_TIMER		0x4				/* soft timer,the timer's callback function will be called in timer thread. */
245

246 247 248 249
#define RT_TIMER_CTRL_SET_TIME			0x0				/* set timer. 								*/
#define RT_TIMER_CTRL_GET_TIME			0x1				/* get timer. 								*/
#define RT_TIMER_CTRL_SET_ONESHOT		0x2				/* change timer to one shot. 				*/
#define RT_TIMER_CTRL_SET_PERIODIC		0x3				/* change timer to periodic. 				*/
250 251 252 253 254 255 256 257 258

/*
 * timer structure
 *
 */
struct rt_timer
{
	struct rt_object parent;

259
	rt_list_t list;										/* the node of timer list. 					*/
260

261 262
	void (*timeout_func)(void* parameter);				/* timeout function. 						*/
	void *parameter;									/* timeout function's parameter. 			*/
263

264 265
	rt_tick_t init_tick;								/* timer timeout tick. 						*/
	rt_tick_t timeout_tick;								/* timeout tick. 							*/
266 267 268 269 270 271 272 273 274 275 276 277 278 279
};
typedef struct rt_timer* rt_timer_t;
/*@}*/

/**
 * @addtogroup Thread
 */
/*@{*/

/*
 * Thread
 */

/* thread state definitions */
280 281 282 283 284 285
#define RT_THREAD_RUNNING				0x0				/* Running. 								*/
#define RT_THREAD_READY					0x1				/* Ready. 									*/
#define RT_THREAD_SUSPEND				0x2				/* Suspend. 								*/
#define RT_THREAD_BLOCK					RT_THREAD_SUSPEND	/* Blocked. 							*/
#define RT_THREAD_CLOSE					0x3				/* Closed. 									*/
#define RT_THREAD_INIT					RT_THREAD_CLOSE	/* Inited. 									*/
286 287 288

#define RT_THREAD_FLAGS_TIMERSLICE 		0x01

289 290 291 292
#define RT_THREAD_CTRL_STARTUP			0x00			/* Starup thread. 							*/
#define RT_THREAD_CTRL_CLOSE			0x01			/* Close thread. 							*/
#define RT_THREAD_CTRL_CHANGE_PRIORITY	0x02			/* Change thread priority. 					*/
#define RT_THREAD_CTRL_INFO				0x03			/* Get thread information. 					*/
293 294 295 296 297 298 299 300 301 302

typedef struct rt_thread* rt_thread_t;
typedef struct rt_module* rt_module_t;

/*
 * Thread related structure
 */
struct rt_thread
{
	/* rt object */
303 304 305
	char        name[RT_NAME_MAX];						/* the name of thread 						*/
	rt_uint8_t	type;									/* type of object 							*/
	rt_uint8_t  flags;									/* thread's flags 							*/
306

307
	rt_list_t	list;									/* the object list 							*/
308

309 310
	rt_thread_t tid;									/* the thread id 							*/
	rt_list_t	tlist;									/* the thread list 							*/
311 312

	/* stack point and entry */
313 314 315 316 317
	void*		sp;										/* stack point 								*/
	void*		entry;									/* entry 									*/
	void*       parameter;								/* parameter 								*/
	void*       stack_addr;								/* stack address 							*/
	rt_uint16_t stack_size;								/* stack size 								*/
318 319

	/* error code */
320
	rt_err_t    error;									/* error code 								*/
321 322

	/* priority */
323 324
	rt_uint8_t	current_priority;						/* current priority 						*/
	rt_uint8_t	init_priority;							/* initialized priority 					*/
325 326 327 328 329 330
#if RT_THREAD_PRIORITY_MAX > 32
	rt_uint8_t 	number;
	rt_uint8_t	high_mask;
#endif
	rt_uint32_t	number_mask;

B
bernard.xiong 已提交
331
#if defined(RT_USING_EVENT)
332 333 334 335 336
	/* thread event */
	rt_uint32_t event_set;
	rt_uint8_t	event_info;
#endif

337
	rt_uint8_t	stat;									/* thread stat 								*/
338

339 340
	rt_ubase_t	init_tick;								/* thread's tick 							*/
	rt_ubase_t 	remaining_tick;							/* remaining tick 							*/
341

342
	struct rt_timer thread_timer;						/* thread timer 							*/
343 344

#ifdef RT_USING_MODULE
345
	rt_module_t module_parent;							/* module parent 							*/
346 347
#endif

348
	rt_uint32_t user_data;								/* user data 								*/
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
};
/*@}*/

#ifdef RT_USING_MODULE
struct rt_module
{
	/* inherit from object */
	struct rt_object parent;

	rt_uint32_t module_data;
	void* module_space;

	void* module_entry;
	rt_uint32_t stack_size;
	rt_uint32_t thread_priority;
	rt_thread_t module_thread;

	/* module memory pool */
	rt_uint32_t mempool_size;
	void* module_mempool;

	/* object in this module, module object is the last basic object type */
	struct rt_object_information module_object[RT_Object_Class_Module];
};
#endif

/**
 * @addtogroup IPC
 */
/*@{*/
/*
 * ipc & sync
 */
382 383
#define RT_IPC_FLAG_FIFO				0x00			/* FIFOed IPC. @ref IPC. 					*/
#define RT_IPC_FLAG_PRIO				0x01			/* PRIOed IPC. @ref IPC. 					*/
384

385 386
#define RT_WAITING_FOREVER				-1				/* Block forever until get resource.		*/
#define RT_WAITING_NO					0				/* Non-block. 								*/
387 388 389 390 391 392 393 394

/*
 * Base structure of IPC object
 */
struct rt_ipc_object
{
	struct rt_object parent;

395
	rt_list_t suspend_thread;							/* threads pended on this resource. 		*/
396 397 398 399 400 401 402 403 404 405 406 407
};

#ifdef RT_USING_SEMAPHORE
/*
 * semaphore
 *
 * Binary and counter semaphore are both supported.
 */
struct rt_semaphore
{
	struct rt_ipc_object parent;

408
	rt_ubase_t value;									/* value of semaphore. 						*/
409 410 411 412 413 414 415 416 417 418
};
typedef struct rt_semaphore* rt_sem_t;
#endif

#ifdef RT_USING_MUTEX
/*
 * mutex
 */
struct rt_mutex
{
419
	struct rt_ipc_object 	parent;
420

421
	rt_ubase_t 				value;						/* value of mutex. 							*/
422

423 424
	struct rt_thread		*owner;						/* current owner of mutex. 					*/
	rt_uint8_t 				original_priority;			/* priority of last thread hold the mutex. 	*/
425

426
	rt_ubase_t hold;			 						/* numbers of thread hold the mutex. 		*/
427 428 429 430
};
typedef struct rt_mutex* rt_mutex_t;
#endif

B
bernard.xiong 已提交
431
#if defined(RT_USING_EVENT)
432 433 434
#define RT_EVENT_FLAG_AND				0x01
#define RT_EVENT_FLAG_OR				0x02
#define RT_EVENT_FLAG_CLEAR				0x04
435 436 437 438 439 440 441 442 443 444
#endif

#ifdef RT_USING_EVENT
/*
 * event
 */
struct rt_event
{
	struct rt_ipc_object parent;

445
	rt_uint32_t set;									/* event set. 								*/
446 447 448 449 450 451 452 453 454 455 456 457 458
};
typedef struct rt_event* rt_event_t;
#endif

#ifdef RT_USING_MAILBOX
/*
 * mailbox
 *
 */
struct rt_mailbox
{
	struct rt_ipc_object parent;

459
	rt_uint32_t* msg_pool;							/* start address of message buffer. 			*/
460

461
	rt_size_t size;									/* size of message pool. 						*/
462

463 464
	rt_ubase_t entry;								/* index of messages in msg_pool. 				*/
	rt_ubase_t in_offset, out_offset;				/* in/output offset of the message buffer.		*/
465 466 467 468 469 470 471 472 473 474 475 476
};
typedef struct rt_mailbox* rt_mailbox_t;
#endif

#ifdef RT_USING_MESSAGEQUEUE
/*
 * messagequeue
 */
struct rt_messagequeue
{
	struct rt_ipc_object parent;

477
	void* msg_pool;									/* start address of message queue. 				*/
478

479 480
	rt_size_t msg_size;								/* message size of each message. 				*/
	rt_size_t max_msgs;								/* max number of messages. 						*/
481

482 483 484
	void* msg_queue_head;							/* list head. 									*/
	void* msg_queue_tail;							/* list tail. 									*/
	void* msg_queue_free;							/* pointer indicated the free node of queue. 	*/
485

486
	rt_ubase_t entry;								/* index of messages in the queue. 				*/
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
};
typedef struct rt_messagequeue* rt_mq_t;
#endif
/*@}*/

/**
 * @addtogroup MM
 */
/*@{*/
/*
 * memory management
 * heap & partition
 */
#ifdef RT_USING_MEMPOOL
/*
 * Base structure of Memory pool object
 */
struct rt_mempool
{
	struct rt_object parent;

508 509
	void		*start_address;						/* memory pool start 							*/
	rt_size_t 	size;								/* size of memory pool 							*/
510

511 512
	rt_size_t 	block_size;							/* size of memory blocks 						*/
	rt_uint8_t	*block_list;						/* memory blocks list 							*/
513

514 515
	rt_size_t 	block_total_count;					/* numbers of memory block 						*/
	rt_size_t 	block_free_count;					/* numbers of free memory block 				*/
516

517 518
	rt_list_t 	suspend_thread;						/* threads pended on this resource 				*/
	rt_size_t 	suspend_thread_count;				/* numbers of thread pended on this resource 	*/
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
};
typedef struct rt_mempool* rt_mp_t;
#endif
/*@}*/

#ifdef RT_USING_DEVICE
/**
 * @addtogroup Device
 */
/*@{*/

/*
 * device (I/O) system
 */
enum rt_device_class_type
{
535 536 537 538 539 540 541 542
	RT_Device_Class_Char = 0,						/* character device								*/
	RT_Device_Class_Block,							/* block device 								*/
	RT_Device_Class_NetIf,							/* net interface 								*/
	RT_Device_Class_MTD,							/* memory device 								*/
	RT_Device_Class_CAN,							/* CAN device 									*/
	RT_Device_Class_RTC,							/* RTC device 									*/
	RT_Device_Class_Sound,							/* Sound device 								*/
	RT_Device_Class_Unknown							/* unknown device 								*/
543 544 545
};

/* device flags */
546
#define RT_DEVICE_FLAG_DEACTIVATE		0x000		/* not inited 									*/
547

548 549 550
#define RT_DEVICE_FLAG_RDONLY			0x001		/* read only 									*/
#define RT_DEVICE_FLAG_WRONLY			0x002		/* write only 									*/
#define RT_DEVICE_FLAG_RDWR				0x003		/* read and write 								*/
551

552 553 554 555 556
#define RT_DEVICE_FLAG_REMOVABLE		0x004		/* removable device 							*/
#define RT_DEVICE_FLAG_STANDALONE		0x008		/* standalone device							*/
#define RT_DEVICE_FLAG_ACTIVATED		0x010		/* device is activated 							*/
#define RT_DEVICE_FLAG_SUSPENDED		0x020		/* device is suspended 							*/
#define RT_DEVICE_FLAG_STREAM			0x040		/* stream mode 									*/
557

558 559 560 561
#define RT_DEVICE_FLAG_INT_RX			0x100		/* INT mode on Rx 								*/
#define RT_DEVICE_FLAG_DMA_RX			0x200		/* DMA mode on Rx 								*/
#define RT_DEVICE_FLAG_INT_TX			0x400		/* INT mode on Tx 								*/
#define RT_DEVICE_FLAG_DMA_TX			0x800		/* DMA mode on Tx								*/
562

563 564 565 566 567
#define RT_DEVICE_OFLAG_CLOSE			0x000		/* device is closed 							*/
#define RT_DEVICE_OFLAG_RDONLY			0x001		/* read only access								*/
#define RT_DEVICE_OFLAG_WRONLY			0x002		/* write only access							*/
#define RT_DEVICE_OFLAG_RDWR			0x003		/* read and write 								*/
#define RT_DEVICE_OFLAG_OPEN			0x008		/* device is opened 							*/
568 569

/* general device commands */
570 571
#define RT_DEVICE_CTRL_RESUME	   		0x01		/* resume device 								*/
#define RT_DEVICE_CTRL_SUSPEND	    	0x02		/* suspend device 								*/
572 573

/* special device commands */
574 575 576 577 578 579
#define RT_DEVICE_CTRL_CHAR_STREAM		0x10		/* stream mode on char device 					*/
#define RT_DEVICE_CTRL_BLK_GETGEOME		0x10		/* get geometry information 					*/
#define RT_DEVICE_CTRL_NETIF_GETMAC		0x10		/* get mac address 								*/
#define RT_DEVICE_CTRL_MTD_FORMAT		0x10		/* format a MTD device 							*/
#define RT_DEVICE_CTRL_RTC_GET_TIME		0x10		/* get time 									*/
#define RT_DEVICE_CTRL_RTC_SET_TIME		0x11		/* set time 									*/
580

581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
typedef struct rt_device* rt_device_t;
/*
 * Device related structure
 */
struct rt_device
{
	struct rt_object parent;

	/* device type */
	enum rt_device_class_type type;
	/* device flag and device open flag*/
	rt_uint16_t flag, open_flag;

	/* device call back */
	rt_err_t (*rx_indicate)(rt_device_t dev, rt_size_t size);
	rt_err_t (*tx_complete)(rt_device_t dev, void* buffer);

	/* common device interface */
	rt_err_t  (*init)	(rt_device_t dev);
	rt_err_t  (*open)	(rt_device_t dev, rt_uint16_t oflag);
	rt_err_t  (*close)	(rt_device_t dev);
	rt_size_t (*read)	(rt_device_t dev, rt_off_t pos, void* buffer, rt_size_t size);
	rt_size_t (*write)	(rt_device_t dev, rt_off_t pos, const void* buffer, rt_size_t size);
	rt_err_t  (*control)(rt_device_t dev, rt_uint8_t cmd, void *args);

#ifdef RT_USING_DEVICE_SUSPEND
	rt_err_t (*suspend) (rt_device_t dev);
	rt_err_t (*resumed) (rt_device_t dev);
#endif

	/* device private data */
	void* private;
};

/*@}*/
#endif

#ifdef __cplusplus
}
#endif

#endif