mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-02-06 21:18:25 +08:00
bbeb09b695
- Lots of minor but nasty bugfixes to get all tests to run clean - core lua and test suite fixes to allow luac -F to run cleanly against test suite - next tranch to get LFS working - luac.cross -a options plus fixes from feedback - UART fixes and lua.c merge - commit of wip prior to rebaselining against current dev - more tweaks
13 lines
246 B
C
13 lines
246 B
C
/*
|
|
** NodeMCU Lua 5.1 main initiator and comand interpreter
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
#include "lua.h"
|
|
#include "lauxlib.h"
|
|
#include "lualib.h"
|
|
#include "llimits.h"
|
|
#define LUA_VERSION_51
|
|
#include "os_type.h"
|
|
#include "../lua53/lua.c"
|
|
|