ardupilot/libraries/AP_Progmem/AP_Progmem_DesktopBuild.h
Andrew Tridgell 8b6ad6d559 SITL: removed SITL_debug()
not needed any more
2012-12-20 14:51:36 +11:00

17 lines
381 B
C

#ifndef __AP_PROGMEM_DESKTOP_BUILD_H__
#define __AP_PROGMEM_DESKTOP_BUILD_H__
#ifndef __AP_PROGMEM_H__
#error "Do not import AP_Progmem_DesktopBuild.h directly - use AP_Progmem.h"
#endif // __AP_PROGMEM_H__
/* Inherit AVR definitions for everything else */
#include "AP_Progmem_AVR.h"
#undef PROGMEM
#define PROGMEM __attribute__(())
#endif // __AP_PROGMEM_DESKTOP_BUILD_H__