rtdef.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. /*
  2. * File : rtdef.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://openlab.rt-thread.com/license/LICENSE.
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2007-01-10 Bernard the first version
  13. * 2008-07-12 Bernard remove all rt_int8, rt_uint32_t etc typedef
  14. */
  15. #ifndef __RT_DEF_H__
  16. #define __RT_DEF_H__
  17. #include <rtconfig.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /* RT-Thread version information */
  22. #define RT_VERSION 4L
  23. #define RT_SUBVERSION 0L
  24. /* date type defination */
  25. typedef signed char rt_int8_t;
  26. typedef signed short rt_int16_t;
  27. typedef signed long rt_int32_t;
  28. typedef unsigned char rt_uint8_t;
  29. typedef unsigned short rt_uint16_t;
  30. typedef unsigned long rt_uint32_t;
  31. typedef int rt_bool_t;
  32. /* 32bit CPU */
  33. typedef long rt_base_t;
  34. typedef unsigned long rt_ubase_t;
  35. /* RT-Thread definitions */
  36. typedef rt_base_t rt_err_t; /* Type for error number. */
  37. typedef rt_uint32_t rt_time_t; /* Type for time stamp. */
  38. typedef rt_uint32_t rt_tick_t; /* Type for tick count. */
  39. typedef rt_base_t rt_flag_t; /* Type for flags. */
  40. typedef rt_ubase_t rt_size_t; /* Type for size number. */
  41. typedef rt_ubase_t rt_dev_t; /* Type for device. */
  42. typedef rt_uint32_t rt_off_t; /* Type for offset. */
  43. /* RT-Thread bool type definitions */
  44. #define RT_TRUE 1
  45. #define RT_FALSE 0
  46. /* maximun value of base type */
  47. #define RT_UINT8_MAX 0xff /* Maxium number of UINT8. */
  48. #define RT_UINT16_MAX 0xffff /* Maxium number of UINT16. */
  49. #define RT_UINT32_MAX 0xffffffff /* Maxium number of UINT32. */
  50. #define RT_TICK_MAX RT_UINT32_MAX /* Maxium number of tick */
  51. /* Compiler Related Definitions */
  52. #ifdef __CC_ARM /* ARM Compiler */
  53. #include <stdarg.h>
  54. #define SECTION(x) __attribute__((section(x)))
  55. #define UNUSED __attribute__((unused))
  56. #define ALIGN(n) __attribute__((aligned(n)))
  57. #define rt_inline static __inline
  58. /* module compiling */
  59. #ifdef RT_USING_MODULE
  60. #define RTT_API __declspec(dllimport)
  61. #else
  62. #define RTT_API __declspec(dllexport)
  63. #endif
  64. #elif defined (__IAR_SYSTEMS_ICC__) /* for IAR Compiler */
  65. #include <stdarg.h>
  66. #define SECTION(x) @ x
  67. #define UNUSED
  68. #define PRAGMA(x) _Pragma(#x)
  69. #define ALIGN(n) PRAGMA(data_alignment=n)
  70. #define rt_inline inline
  71. #define RTT_API
  72. #elif defined (__GNUC__) /* GNU GCC Compiler */
  73. #ifdef RT_USING_NEWLIB
  74. #include <stdarg.h>
  75. #else
  76. typedef void *__sys_va_list;
  77. typedef __sys_va_list va_list;
  78. #define __va_rounded_size(type) \
  79. (((sizeof (type) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  80. #define va_start(ap, lastarg) \
  81. (ap = ((char *) &(lastarg) + __va_rounded_size(lastarg)))
  82. #define va_end(ap) ((void)0)
  83. /* little endian */
  84. #define va_arg(ap, type) \
  85. (ap = (__sys_va_list) ((char *) (ap) + __va_rounded_size (type)), \
  86. *((type *) (void *) ((char *) (ap) - __va_rounded_size (type))))
  87. #endif
  88. #define SECTION(x) __attribute__((section(x)))
  89. #define UNUSED __attribute__((unused))
  90. #define ALIGN(n) __attribute__((aligned(n)))
  91. #define rt_inline static __inline
  92. #define RTT_API
  93. #endif
  94. /* event length */
  95. #define RT_EVENT_LENGTH 32
  96. /* memory management option */
  97. #define RT_MM_PAGE_SIZE 4096
  98. #define RT_MM_PAGE_MASK (RT_MM_PAGE_SIZE - 1)
  99. #define RT_MM_PAGE_BITS 12
  100. /**
  101. * @addtogroup Error
  102. */
  103. /*@{*/
  104. /* RT-Thread error code definitions */
  105. #define RT_EOK 0 /* There is no error */
  106. #define RT_ERROR 1 /* A generic error happens */
  107. #define RT_ETIMEOUT 2 /* Timed out */
  108. #define RT_EFULL 3 /* The resource is full */
  109. #define RT_EEMPTY 4 /* The resource is empty */
  110. #define RT_ENOMEM 5 /* No memory */
  111. #define RT_ENOSYS 6 /* No system */
  112. #define RT_EBUSY 7 /* Busy */
  113. /*@}*/
  114. #ifdef RT_DEBUG
  115. #define RT_ASSERT(EX) if (!(EX)) {volatile char dummy=0; rt_kprintf("(%s) assert failed at %s:%d \n", \
  116. #EX, __FUNCTION__, __LINE__); while (dummy==0);}
  117. #else
  118. #define RT_ASSERT(EX)
  119. #endif
  120. /**
  121. * @def RT_ALIGN(size, align)
  122. * Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
  123. * would equal to 16. It is needed in some critical contexts.
  124. */
  125. #define RT_ALIGN(size, align) (((size) + (align) - 1) & ~((align)-1))
  126. /**
  127. * @def RT_NULL
  128. * Similar as the \c NULL in C library.
  129. */
  130. #define RT_NULL ((void *)0)
  131. struct rt_list_node
  132. {
  133. struct rt_list_node *next; /* point to next node. */
  134. struct rt_list_node *prev; /* point to prev node. */
  135. };
  136. typedef struct rt_list_node rt_list_t; /* Type for lists. */
  137. /**
  138. * @addtogroup KernelObject
  139. */
  140. /*@{*/
  141. /*
  142. * Base structure of Kernel object
  143. */
  144. struct rt_object
  145. {
  146. /* name of kernel object */
  147. char name[RT_NAME_MAX];
  148. /* type of kernel object */
  149. rt_uint8_t type;
  150. /* flag of kernel object */
  151. rt_uint8_t flag;
  152. /* list pointer of kernel object */
  153. rt_list_t list;
  154. };
  155. typedef struct rt_object* rt_object_t; /* Type for kernel objects. */
  156. /**
  157. * The object type can be one of the follows with specific
  158. * macros enabled:
  159. * - Thread
  160. * - Process
  161. * - Semaphore
  162. * - Mutex
  163. * - Event
  164. * - MailBox
  165. * - MessageQueue
  166. * - MemPool
  167. * - Device
  168. * - Timer
  169. * - Unknown
  170. * - Static
  171. */
  172. enum rt_object_class_type
  173. {
  174. RT_Object_Class_Thread = 0, /* The object is a thread. */
  175. #ifdef RT_USING_SEMAPHORE
  176. RT_Object_Class_Semaphore, /* The object is a semaphore. */
  177. #endif
  178. #ifdef RT_USING_MUTEX
  179. RT_Object_Class_Mutex, /* The object is a mutex. */
  180. #endif
  181. #ifdef RT_USING_EVENT
  182. RT_Object_Class_Event, /* The object is a event. */
  183. #endif
  184. #ifdef RT_USING_MAILBOX
  185. RT_Object_Class_MailBox, /* The object is a mail box. */
  186. #endif
  187. #ifdef RT_USING_MESSAGEQUEUE
  188. RT_Object_Class_MessageQueue, /* The object is a message queue. */
  189. #endif
  190. #ifdef RT_USING_MEMPOOL
  191. RT_Object_Class_MemPool, /* The object is a memory pool. */
  192. #endif
  193. #ifdef RT_USING_DEVICE
  194. RT_Object_Class_Device, /* The object is a device */
  195. #endif
  196. RT_Object_Class_Timer, /* The object is a timer. */
  197. #ifdef RT_USING_MODULE
  198. RT_Object_Class_Module, /* The object is a module. */
  199. #endif
  200. RT_Object_Class_Unknown, /* The object is unknown. */
  201. RT_Object_Class_Static = 0x80 /* The object is a static object. */
  202. };
  203. /*
  204. * the information of the kernel object
  205. */
  206. struct rt_object_information
  207. {
  208. enum rt_object_class_type type; /* object class type. */
  209. rt_list_t object_list; /* object list. */
  210. rt_size_t object_size; /* object size. */
  211. };
  212. /*@}*/
  213. /**
  214. * @addtogroup Clock
  215. */
  216. /*@{*/
  217. /*
  218. * clock & timer macros
  219. */
  220. #define RT_TIMER_FLAG_DEACTIVATED 0x0 /* timer is deactive. */
  221. #define RT_TIMER_FLAG_ACTIVATED 0x1 /* timer is active. */
  222. #define RT_TIMER_FLAG_ONE_SHOT 0x0 /* one shot timer. */
  223. #define RT_TIMER_FLAG_PERIODIC 0x2 /* periodic timer. */
  224. #define RT_TIMER_FLAG_HARD_TIMER 0x0 /* hard timer,the timer's callback function will be called in tick isr. */
  225. #define RT_TIMER_FLAG_SOFT_TIMER 0x4 /* soft timer,the timer's callback function will be called in timer thread. */
  226. #define RT_TIMER_CTRL_SET_TIME 0x0 /* set timer. */
  227. #define RT_TIMER_CTRL_GET_TIME 0x1 /* get timer. */
  228. #define RT_TIMER_CTRL_SET_ONESHOT 0x2 /* change timer to one shot. */
  229. #define RT_TIMER_CTRL_SET_PERIODIC 0x3 /* change timer to periodic. */
  230. /*
  231. * timer structure
  232. *
  233. */
  234. struct rt_timer
  235. {
  236. struct rt_object parent;
  237. rt_list_t list; /* the node of timer list. */
  238. void (*timeout_func)(void* parameter); /* timeout function. */
  239. void *parameter; /* timeout function's parameter. */
  240. rt_tick_t init_tick; /* timer timeout tick. */
  241. rt_tick_t timeout_tick; /* timeout tick. */
  242. };
  243. typedef struct rt_timer* rt_timer_t;
  244. /*@}*/
  245. /**
  246. * @addtogroup Thread
  247. */
  248. /*@{*/
  249. /*
  250. * Thread
  251. */
  252. /* thread state definitions */
  253. #define RT_THREAD_RUNNING 0x0 /* Running. */
  254. #define RT_THREAD_READY 0x1 /* Ready. */
  255. #define RT_THREAD_SUSPEND 0x2 /* Suspend. */
  256. #define RT_THREAD_BLOCK RT_THREAD_SUSPEND /* Blocked. */
  257. #define RT_THREAD_CLOSE 0x3 /* Closed. */
  258. #define RT_THREAD_INIT RT_THREAD_CLOSE /* Inited. */
  259. #define RT_THREAD_FLAGS_TIMERSLICE 0x01
  260. #define RT_THREAD_CTRL_STARTUP 0x00 /* Starup thread. */
  261. #define RT_THREAD_CTRL_CLOSE 0x01 /* Close thread. */
  262. #define RT_THREAD_CTRL_CHANGE_PRIORITY 0x02 /* Change thread priority. */
  263. #define RT_THREAD_CTRL_INFO 0x03 /* Get thread information. */
  264. typedef struct rt_thread* rt_thread_t;
  265. typedef struct rt_module* rt_module_t;
  266. /*
  267. * Thread related structure
  268. */
  269. struct rt_thread
  270. {
  271. /* rt object */
  272. char name[RT_NAME_MAX]; /* the name of thread */
  273. rt_uint8_t type; /* type of object */
  274. rt_uint8_t flags; /* thread's flags */
  275. rt_list_t list; /* the object list */
  276. rt_list_t tlist; /* the thread list */
  277. /* stack point and entry */
  278. void* sp; /* stack point */
  279. void* entry; /* entry */
  280. void* parameter; /* parameter */
  281. void* stack_addr; /* stack address */
  282. rt_uint16_t stack_size; /* stack size */
  283. /* error code */
  284. rt_err_t error; /* error code */
  285. rt_uint8_t stat; /* thread stat */
  286. /* priority */
  287. rt_uint8_t current_priority; /* current priority */
  288. rt_uint8_t init_priority; /* initialized priority */
  289. #if RT_THREAD_PRIORITY_MAX > 32
  290. rt_uint8_t number;
  291. rt_uint8_t high_mask;
  292. #endif
  293. rt_uint32_t number_mask;
  294. #if defined(RT_USING_EVENT)
  295. /* thread event */
  296. rt_uint32_t event_set;
  297. rt_uint8_t event_info;
  298. #endif
  299. rt_ubase_t init_tick; /* thread's tick */
  300. rt_ubase_t remaining_tick; /* remaining tick */
  301. struct rt_timer thread_timer; /* thread timer */
  302. #ifdef RT_USING_MODULE
  303. rt_module_t module_parent; /* module parent */
  304. #endif
  305. rt_uint32_t user_data; /* user data */
  306. };
  307. /*@}*/
  308. #ifdef RT_USING_MODULE
  309. /*
  310. * module system
  311. */
  312. enum rt_module_class_type
  313. {
  314. RT_Module_Class_APP = 0, /* application module */
  315. RT_Module_Class_EXTENSION,
  316. RT_Module_Class_SERVICE, /* service module */
  317. RT_Module_Class_Unknown /* unknown module */
  318. };
  319. struct rt_module_info
  320. {
  321. /* export interface */
  322. void *module_interface;
  323. /* refence count */
  324. rt_uint32_t module_refs;
  325. /* module type */
  326. enum rt_module_class_type module_type;
  327. /* module guid */
  328. rt_uint32_t module_guid;
  329. /* application entry */
  330. void* exec_entry;
  331. };
  332. struct rt_module
  333. {
  334. /* inherit from object */
  335. struct rt_object parent;
  336. void* module_space;
  337. void* module_entry;
  338. rt_uint32_t stack_size;
  339. rt_uint32_t thread_priority;
  340. rt_thread_t module_thread;
  341. /* module memory pool */
  342. rt_uint32_t mempool_size;
  343. void* module_mempool;
  344. struct rt_module_info *module_info;
  345. /* object in this module, module object is the last basic object type */
  346. struct rt_object_information module_object[RT_Object_Class_Module];
  347. };
  348. #endif
  349. /**
  350. * @addtogroup IPC
  351. */
  352. /*@{*/
  353. /*
  354. * ipc & sync
  355. */
  356. #define RT_IPC_FLAG_FIFO 0x00 /* FIFOed IPC. @ref IPC. */
  357. #define RT_IPC_FLAG_PRIO 0x01 /* PRIOed IPC. @ref IPC. */
  358. #define RT_WAITING_FOREVER -1 /* Block forever until get resource. */
  359. #define RT_WAITING_NO 0 /* Non-block. */
  360. /*
  361. * Base structure of IPC object
  362. */
  363. struct rt_ipc_object
  364. {
  365. struct rt_object parent;
  366. rt_list_t suspend_thread; /* threads pended on this resource. */
  367. };
  368. #ifdef RT_USING_SEMAPHORE
  369. /*
  370. * semaphore
  371. *
  372. * Binary and counter semaphore are both supported.
  373. */
  374. struct rt_semaphore
  375. {
  376. struct rt_ipc_object parent;
  377. rt_uint16_t value; /* value of semaphore. */
  378. };
  379. typedef struct rt_semaphore* rt_sem_t;
  380. #endif
  381. #ifdef RT_USING_MUTEX
  382. /*
  383. * mutex
  384. */
  385. struct rt_mutex
  386. {
  387. struct rt_ipc_object parent;
  388. rt_uint8_t value; /* value of mutex. */
  389. rt_uint8_t original_priority; /* priority of last thread hold the mutex. */
  390. rt_uint8_t hold; /* numbers of thread hold the mutex. */
  391. struct rt_thread *owner; /* current owner of mutex. */
  392. };
  393. typedef struct rt_mutex* rt_mutex_t;
  394. #endif
  395. #if defined(RT_USING_EVENT)
  396. #define RT_EVENT_FLAG_AND 0x01
  397. #define RT_EVENT_FLAG_OR 0x02
  398. #define RT_EVENT_FLAG_CLEAR 0x04
  399. #endif
  400. #ifdef RT_USING_EVENT
  401. /*
  402. * event
  403. */
  404. struct rt_event
  405. {
  406. struct rt_ipc_object parent;
  407. rt_uint32_t set; /* event set. */
  408. };
  409. typedef struct rt_event* rt_event_t;
  410. #endif
  411. #ifdef RT_USING_MAILBOX
  412. /*
  413. * mailbox
  414. *
  415. */
  416. struct rt_mailbox
  417. {
  418. struct rt_ipc_object parent;
  419. rt_uint32_t* msg_pool; /* start address of message buffer. */
  420. rt_uint16_t size; /* size of message pool. */
  421. rt_uint16_t entry; /* index of messages in msg_pool. */
  422. rt_uint16_t in_offset, out_offset; /* in/output offset of the message buffer. */
  423. };
  424. typedef struct rt_mailbox* rt_mailbox_t;
  425. #endif
  426. #ifdef RT_USING_MESSAGEQUEUE
  427. /*
  428. * messagequeue
  429. */
  430. struct rt_messagequeue
  431. {
  432. struct rt_ipc_object parent;
  433. void* msg_pool; /* start address of message queue. */
  434. rt_uint16_t msg_size; /* message size of each message. */
  435. rt_uint16_t max_msgs; /* max number of messages. */
  436. rt_uint16_t entry; /* index of messages in the queue. */
  437. void* msg_queue_head; /* list head. */
  438. void* msg_queue_tail; /* list tail. */
  439. void* msg_queue_free; /* pointer indicated the free node of queue. */
  440. };
  441. typedef struct rt_messagequeue* rt_mq_t;
  442. #endif
  443. /*@}*/
  444. /**
  445. * @addtogroup MM
  446. */
  447. /*@{*/
  448. /*
  449. * memory management
  450. * heap & partition
  451. */
  452. #ifdef RT_USING_MEMPOOL
  453. /*
  454. * Base structure of Memory pool object
  455. */
  456. struct rt_mempool
  457. {
  458. struct rt_object parent;
  459. void *start_address; /* memory pool start */
  460. rt_size_t size; /* size of memory pool */
  461. rt_size_t block_size; /* size of memory blocks */
  462. rt_uint8_t *block_list; /* memory blocks list */
  463. rt_size_t block_total_count; /* numbers of memory block */
  464. rt_size_t block_free_count; /* numbers of free memory block */
  465. rt_list_t suspend_thread; /* threads pended on this resource */
  466. rt_size_t suspend_thread_count; /* numbers of thread pended on this resource */
  467. };
  468. typedef struct rt_mempool* rt_mp_t;
  469. #endif
  470. /*@}*/
  471. #ifdef RT_USING_DEVICE
  472. /**
  473. * @addtogroup Device
  474. */
  475. /*@{*/
  476. /*
  477. * device (I/O) system
  478. */
  479. enum rt_device_class_type
  480. {
  481. RT_Device_Class_Char = 0, /* character device */
  482. RT_Device_Class_Block, /* block device */
  483. RT_Device_Class_NetIf, /* net interface */
  484. RT_Device_Class_MTD, /* memory device */
  485. RT_Device_Class_CAN, /* CAN device */
  486. RT_Device_Class_RTC, /* RTC device */
  487. RT_Device_Class_Sound, /* Sound device */
  488. RT_Device_Class_Unknown /* unknown device */
  489. };
  490. /* device flags */
  491. #define RT_DEVICE_FLAG_DEACTIVATE 0x000 /* not inited */
  492. #define RT_DEVICE_FLAG_RDONLY 0x001 /* read only */
  493. #define RT_DEVICE_FLAG_WRONLY 0x002 /* write only */
  494. #define RT_DEVICE_FLAG_RDWR 0x003 /* read and write */
  495. #define RT_DEVICE_FLAG_REMOVABLE 0x004 /* removable device */
  496. #define RT_DEVICE_FLAG_STANDALONE 0x008 /* standalone device */
  497. #define RT_DEVICE_FLAG_ACTIVATED 0x010 /* device is activated */
  498. #define RT_DEVICE_FLAG_SUSPENDED 0x020 /* device is suspended */
  499. #define RT_DEVICE_FLAG_STREAM 0x040 /* stream mode */
  500. #define RT_DEVICE_FLAG_INT_RX 0x100 /* INT mode on Rx */
  501. #define RT_DEVICE_FLAG_DMA_RX 0x200 /* DMA mode on Rx */
  502. #define RT_DEVICE_FLAG_INT_TX 0x400 /* INT mode on Tx */
  503. #define RT_DEVICE_FLAG_DMA_TX 0x800 /* DMA mode on Tx */
  504. #define RT_DEVICE_OFLAG_CLOSE 0x000 /* device is closed */
  505. #define RT_DEVICE_OFLAG_RDONLY 0x001 /* read only access */
  506. #define RT_DEVICE_OFLAG_WRONLY 0x002 /* write only access */
  507. #define RT_DEVICE_OFLAG_RDWR 0x003 /* read and write */
  508. #define RT_DEVICE_OFLAG_OPEN 0x008 /* device is opened */
  509. /* general device commands */
  510. #define RT_DEVICE_CTRL_RESUME 0x01 /* resume device */
  511. #define RT_DEVICE_CTRL_SUSPEND 0x02 /* suspend device */
  512. /* special device commands */
  513. #define RT_DEVICE_CTRL_CHAR_STREAM 0x10 /* stream mode on char device */
  514. #define RT_DEVICE_CTRL_BLK_GETGEOME 0x10 /* get geometry information */
  515. #define RT_DEVICE_CTRL_NETIF_GETMAC 0x10 /* get mac address */
  516. #define RT_DEVICE_CTRL_MTD_FORMAT 0x10 /* format a MTD device */
  517. #define RT_DEVICE_CTRL_RTC_GET_TIME 0x10 /* get time */
  518. #define RT_DEVICE_CTRL_RTC_SET_TIME 0x11 /* set time */
  519. typedef struct rt_device* rt_device_t;
  520. /*
  521. * Device related structure
  522. */
  523. struct rt_device
  524. {
  525. struct rt_object parent;
  526. /* device type */
  527. enum rt_device_class_type type;
  528. /* device flag and device open flag*/
  529. rt_uint16_t flag, open_flag;
  530. /* device call back */
  531. rt_err_t (*rx_indicate)(rt_device_t dev, rt_size_t size);
  532. rt_err_t (*tx_complete)(rt_device_t dev, void* buffer);
  533. /* common device interface */
  534. rt_err_t (*init) (rt_device_t dev);
  535. rt_err_t (*open) (rt_device_t dev, rt_uint16_t oflag);
  536. rt_err_t (*close) (rt_device_t dev);
  537. rt_size_t (*read) (rt_device_t dev, rt_off_t pos, void* buffer, rt_size_t size);
  538. rt_size_t (*write) (rt_device_t dev, rt_off_t pos, const void* buffer, rt_size_t size);
  539. rt_err_t (*control)(rt_device_t dev, rt_uint8_t cmd, void *args);
  540. #ifdef RT_USING_DEVICE_SUSPEND
  541. rt_err_t (*suspend) (rt_device_t dev);
  542. rt_err_t (*resumed) (rt_device_t dev);
  543. #endif
  544. /* device private data */
  545. void* private;
  546. };
  547. /*@}*/
  548. #endif
  549. #ifdef __cplusplus
  550. }
  551. #endif
  552. #endif