dRonin  adbada4
dRonin firmware
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pios_dio.h
Go to the documentation of this file.
1 #ifndef _PIOS_DIO_H
2 #define _PIOS_DIO_H
3 
4 /* Default implementation of PIOS_DIO. Used by device-agnostic libraries and
5  * the posix env now.
6  */
7 
8 #if !defined(FLIGHT_POSIX) && !defined(PIOS_NO_HW)
9 #error Device-agnostic PIOS_DIO is only for posix or libs.
10 #endif
11 
12 typedef void * dio_tag_t;
13 
14 #endif
void * dio_tag_t
Definition: pios_dio.h:12