No Description

Feng Cheng bc135f0caa luat_timer_rtt: 修正一个bug 6 years ago
.github 25588a31d3 update: ci改为多线程编译,加快速度 6 years ago
bsp 79fe1f0484 fix: 更新qemu-vexpress-a9,解决文件系统未挂载的bug 6 years ago
docs 3a6255f683 add: spi接口模型文档 6 years ago
lua 7528252376 update: debug库仅保留traceback方法 6 years ago
luat bc135f0caa luat_timer_rtt: 修正一个bug 6 years ago
script 7528252376 update: debug库仅保留traceback方法 6 years ago
.gitignore 56a88f2e8c add: 添加bsp/w60x,测试一下编译 6 years ago
.gitmodules 1738392e63 add: bsp/stm32f103re 测试用 6 years ago
LICENSE 9c31f22d78 Initial commit 6 years ago
README.md 3e176af8a3 Merge branch 'master' of github.com:openLuat/LuatOS 6 years ago
docs.md 70771e41fe add: 添加原型代码 6 years ago
logo.jpg 144f1c9868 update: 更新README 6 years ago
system.jpg 0bd008a963 add: 添加已经完成的文档 6 years ago
tool.lua 6f4af11a71 update: uart回调改成直接调用函数 6 years ago
vscode.code-workspace 1279e840b3 add: 独立的vsprint给lua使用 6 years ago

README.md

LuatOS logo

license rtt-w60x ci qemu ci stm32f103re ci issue

LuatOS是运行在嵌入式硬件的实时操作系统,只需要少量内存的flash空间就能运行,用户编写lua代码就可完成各种功能

Lua base RTOS, build for many embedded systems

  1. 基于Lua 5.3.5
  2. 低内存需求, 最低32kb, 96kb flash空间
  3. 硬件抽象层兼容M3/arm/risc-v等
  4. 可测试,可模拟(qemu)
  5. 在线升级
  6. 可裁剪,可扩展

QQ群: 1061642968


总体架构

总体架构

代码示例节选

详细代码请查阅 script/app/playit/main.lua

local sys = require("sys")

sys.subscribe("WLAN_READY", function ()
    print("!!! wlan ready event !!!")
    -- 马上进行时间同步
    socket.ntpSync()
end)

disp.init("ssd1306")
display_str("Booting ...")

-- 配网回调
sys.subscribe("WLAN_PW_RE", function(ssid, password)
    if ssid then
        log.info(TAG, "airkiss GOT", ssid, password)
        local conf = {ssid=ssid,password=password}
        json.encodeFile(conf, "/wlan.json")
    else
        log.info(TAG, "airkiss fail")
    end
end)

-- 业务流程, 联网后定时发送温度数据到服务器
sys.taskInit(function()
    while 1 do
        if wlan.ready() == 1 then
            sys.wait(1000)
            local temp = (sensor.ds18b20(28) or "")
            display_str("Temp: " .. temp  .. " rssi:" .. tostring(wlan.rssi()))
            local t = {"GET /api/w60x/report/ds18b20?mac=", wlan.get_mac(), "&temp=", temp, " HTTP/1.0\r\n",
                    "Host: site0.cn\r\n",
                    "User-Agent: LuatOS/0.1.0\r\n",
                        "\r\n"}
            socket.tsend("site0.cn", 80, table.concat(t))
            log.info("network", "tsend complete, sleep 5s")
            sys.wait(5000)
        else
            log.warn("main", "wlan is not ready yet")
            sys.waitUntil("WLAN_READY", 30000)
        end
    end
end)

-- 主循环, 必须加
sys.run()

资源


配套

TODO: 构建工具链,IDE,刷机工具,等等

使用到的开源项目

授权协议

MIT License