123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- PROJECT = "air780e_forwarder"
- VERSION = "1.0.0"
- log.setLevel("DEBUG")
- log.info("main", PROJECT, VERSION)
- log.info("main", "开机原因", pm.lastReson())
- sys = require "sys"
- sysplus = require "sysplus"
- -- 添加硬狗防止程序卡死
- wdt.init(9000)
- sys.timerLoopStart(wdt.feed, 3000)
- -- 设置电平输出 3.3V
- -- pm.ioVol(pm.IOVOL_ALL_GPIO, 3300)
- -- 设置 DNS
- socket.setDNS(nil, 1, "119.29.29.29")
- socket.setDNS(nil, 2, "223.5.5.5")
- -- SIM 自动恢复, 周期性获取小区信息, 网络遇到严重故障时尝试自动恢复等功能
- mobile.setAuto(1000 * 10, nil, nil, true, 1000 * 60)
- -- 开启 IPv6
- -- mobile.ipv6(true)
- -- 初始化 fskv
- log.info("main", "fskv.init", fskv.init())
- -- POWERKEY
- local rtos_bsp = rtos.bsp()
- local pin_table = { ["EC618"] = 35, ["EC718P"] = 46 }
- local powerkey_pin = pin_table[rtos_bsp]
- if powerkey_pin then
- local button_last_press_time, button_last_release_time = 0, 0
- gpio.setup(powerkey_pin, function()
- local current_time = mcu.ticks()
- -- 按下
- if gpio.get(powerkey_pin) == 0 then
- button_last_press_time = current_time -- 记录最后一次按下时间
- return
- end
- -- 释放
- if button_last_press_time == 0 then -- 开机前已经按下, 开机后释放
- return
- end
- if current_time - button_last_release_time < 250 then -- 防止连按
- return
- end
- local duration = current_time - button_last_press_time -- 按键持续时间
- button_last_release_time = current_time -- 记录最后一次释放时间
- if duration > 2000 then
- log.debug("EVENT.POWERKEY_LONG_PRESS", duration)
- sys.publish("POWERKEY_LONG_PRESS", duration)
- elseif duration > 50 then
- log.debug("EVENT.POWERKEY_SHORT_PRESS", duration)
- sys.publish("POWERKEY_SHORT_PRESS", duration)
- end
- end, gpio.PULLUP)
- end
- -- 加载模块
- config = require "config"
- util_http = require "util_http"
- util_netled = require "util_netled"
- util_mobile = require "util_mobile"
- util_location = require "util_location"
- util_notify = require "util_notify"
- -- 由于 NOTIFY_TYPE 支持多个配置, 需按照包含来判断
- local containsValue = function(t, value)
- if t == value then return true end
- if type(t) ~= "table" then return false end
- for k, v in pairs(t) do if v == value then return true end end
- return false
- end
- if containsValue(config.NOTIFY_TYPE, "serial") then
- -- 串口配置
- uart.setup(1, 115200, 8, 1, uart.NONE)
- -- 串口接收回调
- uart.on(1, "receive", function(id, len)
- local data = uart.read(id, len)
- log.info("uart read:", id, len, data)
- if config.ROLE == "MASTER" then
- -- 主机, 通过队列发送数据
- util_notify.add(data)
- else
- -- 从机, 通过串口发送数据
- uart.write(1, data)
- end
- end)
- end
- -- 短信接收回调
- sms.setNewSmsCb(function(sender_number, sms_content, m)
- local time = string.format("%d/%02d/%02d %02d:%02d:%02d", m.year + 2000, m.mon, m.day, m.hour, m.min, m.sec)
- log.info("smsCallback", time, sender_number, sms_content)
- -- 短信控制
- local is_sms_ctrl = false
- local receiver_number, sms_content_to_be_sent = sms_content:match("^SMS,(+?%d+),(.+)$")
- receiver_number, sms_content_to_be_sent = receiver_number or "", sms_content_to_be_sent or ""
- if sms_content_to_be_sent ~= "" and receiver_number ~= "" and #receiver_number >= 5 and #receiver_number <= 20 then
- sms.send(receiver_number, sms_content_to_be_sent)
- is_sms_ctrl = true
- end
- -- 发送通知
- util_notify.add({ sms_content, "", "发件号码: " .. sender_number, "发件时间: " .. time, "#SMS" .. (is_sms_ctrl and " #CTRL" or "") })
- end)
- sys.taskInit(function()
- -- 等待网络环境准备就绪
- sys.waitUntil("IP_READY", 1000 * 60 * 5)
- util_netled.init()
- -- 开机通知
- if config.BOOT_NOTIFY then
- sys.timerStart(util_notify.add, 1000 * 5, "#BOOT_" .. pm.lastReson())
- end
- -- 定时同步时间
- if os.time() < 1714500000 then
- socket.sntp()
- end
- if type(config.SNTP_INTERVAL) == "number" and config.SNTP_INTERVAL >= 1000 * 60 then
- sys.timerLoopStart(socket.sntp, config.SNTP_INTERVAL)
- end
- -- 定时查询流量
- if type(config.QUERY_TRAFFIC_INTERVAL) == "number" and config.QUERY_TRAFFIC_INTERVAL >= 1000 * 60 then
- sys.timerLoopStart(util_mobile.queryTraffic, config.QUERY_TRAFFIC_INTERVAL)
- end
- -- 定时基站定位
- if type(config.LOCATION_INTERVAL) == "number" and config.LOCATION_INTERVAL >= 1000 * 60 then
- util_location.refresh(nil, true)
- sys.timerLoopStart(util_location.refresh, config.LOCATION_INTERVAL)
- end
- -- 定时上报
- if type(config.REPORT_INTERVAL) == "number" and config.REPORT_INTERVAL >= 1000 * 60 then
- sys.timerLoopStart(function() util_notify.add("#ALIVE_REPORT") end, config.REPORT_INTERVAL)
- end
- -- 电源键短按发送测试通知
- sys.subscribe("POWERKEY_SHORT_PRESS", function() util_notify.add("#ALIVE") end)
- -- 电源键长按查询流量
- sys.subscribe("POWERKEY_LONG_PRESS", util_mobile.queryTraffic)
- end)
- -- 通话相关
- local is_calling = false
- sys.subscribe("CC_IND", function(status)
- if cc == nil then return end
- if status == "INCOMINGCALL" then
- -- 来电事件, 期间会重复触发
- if is_calling then return end
- is_calling = true
- log.info("cc_status", "INCOMINGCALL", "来电事件", cc.lastNum())
- -- 发送通知
- util_notify.add({ "来电号码: " .. cc.lastNum(), "来电时间: " .. os.date("%Y-%m-%d %H:%M:%S"), "#CALL #CALL_IN" })
- return
- end
- if status == "DISCONNECTED" then
- -- 挂断事件
- is_calling = false
- log.info("cc_status", "DISCONNECTED", "挂断事件", cc.lastNum())
- -- 发送通知
- util_notify.add({ "来电号码: " .. cc.lastNum(), "挂断时间: " .. os.date("%Y-%m-%d %H:%M:%S"), "#CALL #CALL_DISCONNECTED" })
- return
- end
- log.info("cc_status", status)
- end)
- sys.run()
|