mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
17 lines
295 B
C
17 lines
295 B
C
|
// eLua platform configuration
|
||
|
|
||
|
#ifndef __PLATFORM_CONF_H__
|
||
|
#define __PLATFORM_CONF_H__
|
||
|
|
||
|
#ifdef LUA_RPC
|
||
|
#include "auxmods.h"
|
||
|
|
||
|
#define BUILD_RPC
|
||
|
#define LUARPC_ENABLE_SERIAL
|
||
|
|
||
|
#define LUA_PLATFORM_LIBS_ROM \
|
||
|
_ROM( AUXLIB_RPC, luaopen_rpc, rpc_map )
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif // #ifndef __PLATFORM_CONF_H__
|