1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-21 11:54:15 +01:00
cwabbott 24a058c8c7 PyMite: add a new 'openpilot_sitl' platform which allows for stdio to the console and make it the default platform for win32 SiTL.
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2436 ebee16cc-31ac-478f-84a7-5cbb03baadba
2011-01-15 17:10:10 +00:00

38 lines
682 B
C

#undef __FILE_ID__
#define __FILE_ID__ 0x0A
/**
* PyMite usr native function file
*
* automatically created by pmImgCreator.py
* on Tue Jan 11 21:25:50 2011
*
* DO NOT EDIT THIS FILE.
* ANY CHANGES WILL BE LOST.
*
* @file main_nat.c
*/
#define __IN_LIBNATIVE_C__
#include "pm.h"
PmReturn_t
nat_placeholder_func(pPmFrame_t *ppframe)
{
/*
* Use placeholder because an index
* value of zero denotes the stdlib.
* This function should not be called.
*/
PmReturn_t retval;
PM_RAISE(retval, PM_RET_EX_SYS);
return retval;
}
/* Native function lookup table */
pPmNativeFxn_t const usr_nat_fxn_table[] =
{
nat_placeholder_func,
};