| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #include "luat_base.h"
- #include "luat_msgbus.h"
- #include "luat_fs.h"
- #include "luat_timer.h"
- #include <stdlib.h>
- #ifdef LUAT_USE_LVGL
- #include "lvgl.h"
- void luat_lv_fs_init(void);
- void lv_bmp_init(void);
- void lv_png_init(void);
- void lv_split_jpeg_init(void);
- #endif
- LUAMOD_API int luaopen_win32( lua_State *L );
- int luaopen_lfs(lua_State * L);
- int luaopen_rs232_core(lua_State * L);
- static const luaL_Reg loadedlibs[] = {
- {"_G", luaopen_base}, // _G
- {LUA_LOADLIBNAME, luaopen_package}, // require
- {LUA_COLIBNAME, luaopen_coroutine}, // coroutine协程库
- {LUA_TABLIBNAME, luaopen_table}, // table库,操作table类型的数据结构
- {LUA_IOLIBNAME, luaopen_io}, // io库,操作文件
- {LUA_OSLIBNAME, luaopen_os}, // os库,已精简
- {LUA_STRLIBNAME, luaopen_string}, // string库,字符串操作
- {LUA_MATHLIBNAME, luaopen_math}, // math 数值计算
- // {LUA_UTF8LIBNAME, luaopen_utf8},
- {LUA_DBLIBNAME, luaopen_debug}, // debug库,已精简
- #if defined(LUA_COMPAT_BITLIB)
- {LUA_BITLIBNAME, luaopen_bit32}, // 不太可能启用
- #endif
- {"rtos", luaopen_rtos}, // rtos底层库, 核心功能是队列和定时器
- {"log", luaopen_log}, // 日志库
- {"timer", luaopen_timer}, // 延时库
- {"pack", luaopen_pack}, // pack.pack/pack.unpack
- {"json", luaopen_cjson}, // json
- {"zbuff", luaopen_zbuff}, //
- {"crypto", luaopen_crypto},
- // {"fatfs", luaopen_fatfs},
- // {"sfd", luaopen_sfd},
- // {"lfs2", luaopen_lfs2},
- // {"gpio", luaopen_gpio},
- {"spi", luaopen_spi},
- {"rsa", luaopen_rsa},
- #ifdef __XMAKE_BUILD__
- {"protobuf", luaopen_protobuf},
- {"iotauth", luaopen_iotauth},
- #endif
- #ifdef LUAT_USE_LCD
- {"lcd", luaopen_lcd},
- #endif
- #ifdef LUAT_USE_LVGL
- {"lvgl", luaopen_lvgl},
- {"lcd", luaopen_lcd},
- #endif
- {NULL, NULL}
- };
- // 按不同的rtconfig加载不同的库函数
- void luat_openlibs(lua_State *L) {
- // 初始化队列服务
- luat_msgbus_init();
- //print_list_mem("done>luat_msgbus_init");
- // 加载系统库
- const luaL_Reg *lib;
- /* "require" functions from 'loadedlibs' and set results to global table */
- for (lib = loadedlibs; lib->func; lib++) {
- luaL_requiref(L, lib->name, lib->func, 1);
- lua_pop(L, 1); /* remove lib */
- }
- }
- void luat_os_reboot(int code) {
- exit(code);
- }
- const char* luat_os_bsp(void) {
- return "linux";
- }
- extern const struct luat_vfs_filesystem vfs_fs_posix;
- extern const struct luat_vfs_filesystem vfs_fs_luadb;
- extern const char* luat_luadb_mock;
- int luat_fs_init(void) {
- #ifdef LUAT_USE_FS_VFS
- // vfs进行必要的初始化
- luat_vfs_init(NULL);
- // 注册vfs for posix 实现
- luat_vfs_reg(&vfs_fs_posix);
- luat_vfs_reg(&vfs_fs_luadb);
- luat_fs_conf_t conf = {
- .busname = "",
- .type = "posix",
- .filesystem = "posix",
- .mount_point = "", // window环境下, 需要支持任意路径的读取,不能强制要求必须是/
- };
- luat_fs_mount(&conf);
- #ifdef LUAT_USE_VFS_INLINE_LIB
- luat_fs_conf_t conf2 = {
- .busname = (char*)luat_luadb_mock,
- .type = "luadb",
- .filesystem = "luadb",
- .mount_point = "/luadb/",
- };
- luat_fs_mount(&conf2);
- #endif
- #endif
- #ifdef LUAT_USE_LVGL
- luat_lv_fs_init();
- lv_bmp_init();
- lv_png_init();
- lv_split_jpeg_init();
- #endif
- return 0;
- }
- void vConfigureTimerForRunTimeStats( void ) {}
- /** 设备进入待机模式 */
- void luat_os_standy(int timeout) {
- return; // nop
- }
- void luat_ota_reboot(int timeout_ms) {
- if (timeout_ms > 0)
- luat_timer_mdelay(timeout_ms);
- exit(0);
- }
|