You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
692 B
28 lines
692 B
|
|
#ifndef __AP_HAL_LINUX_NAMESPACE_H__ |
|
#define __AP_HAL_LINUX_NAMESPACE_H__ |
|
|
|
/* While not strictly required, names inside the Linux namespace are prefixed |
|
* with Linux for clarity. (Some of our users aren't familiar with all of the |
|
* C++ namespace rules.) |
|
*/ |
|
|
|
namespace Linux { |
|
class LinuxUARTDriver; |
|
class LinuxI2CDriver; |
|
class LinuxSPIDeviceManager; |
|
class LinuxSPIDeviceDriver; |
|
class LinuxAnalogSource; |
|
class LinuxAnalogIn; |
|
class LinuxStorage; |
|
class LinuxGPIO; |
|
class LinuxDigitalSource; |
|
class LinuxRCInput; |
|
class LinuxRCOutput; |
|
class LinuxSemaphore; |
|
class LinuxScheduler; |
|
class LinuxUtil; |
|
} |
|
|
|
#endif // __AP_HAL_LINUX_NAMESPACE_H__ |
|
|
|
|