Skip to content

Commit e4b92c3

Browse files
authoredAug 21, 2022
Merge pull request #169 from konnected-io/mem-cleanup
memory cleanup
2 parents d6e43a5 + c06f985 commit e4b92c3

13 files changed

+78
-72
lines changed
 

‎.github/workflows/build.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build
22

3-
on: pull_request
3+
on: push
44

55
jobs:
66
build-upload:
@@ -20,16 +20,17 @@ jobs:
2020
sudo apt-get -y install libusb-1.0-0 cmake srecord
2121
pip install -U pyserial
2222
23-
- name: Build
24-
env:
25-
PR_NUMBER: ${{ github.event.number }}
26-
run: ./scripts/build-firmware
23+
- id: build
24+
name: Build
25+
run: |
26+
fname=$(./scripts/build-firmware | tail -1)
27+
echo "::set-output name=fname::$fname"
2728
2829
- uses: keithweaver/aws-s3-github-action@v1.0.0
29-
name: Copy PR bin to AWS
30+
name: Copy build to AWS
3031
with:
3132
command: cp
32-
source: build/konnected-esp8266-PR-${{ github.event.number }}.bin
33+
source: build/${{ steps.build.outputs.fname }}
3334
destination: s3://konnected-io/builds/
3435
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
3536
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

‎.github/workflows/release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,23 @@ jobs:
4141
release-url: ${{ steps.get_release.outputs.upload_url }}
4242
allow-overwrite: true
4343
github-token: ${{ secrets.GITHUB_TOKEN }}
44+
45+
- uses: keithweaver/aws-s3-github-action@v1.0.0
46+
name: Copy image to S3
47+
with:
48+
command: cp
49+
source: assets/konnected-esp8266-${{ steps.get_release.outputs.tag_name }}.bin
50+
destination: s3://konnected-io/esp8266/images/
51+
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
52+
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
53+
aws_region: us-east-2
54+
55+
- uses: keithweaver/aws-s3-github-action@v1.0.0
56+
name: Copy LFS to S3
57+
with:
58+
command: cp
59+
source: assets/lfs-${{ steps.get_release.outputs.tag_name }}.img
60+
destination: s3://konnected-io/esp8266/lfs/
61+
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
62+
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
63+
aws_region: us-east-2

‎scripts/build-firmware

+4-6
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ function usage() {
1515
set -e
1616

1717
if ! git describe --exact-match --tags &> /dev/null; then
18-
if [[ -z "${PR_NUMBER}" ]]; then
19-
BRANCH="$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')"
20-
else
21-
BRANCH="PR-"${PR_NUMBER}
22-
fi
18+
BRANCH="$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')"
2319
else
2420
BRANCH="$(git describe --exact-match --tags $(git log -n1 --pretty='%h'))"
2521
fi
@@ -108,9 +104,11 @@ echo
108104

109105
# Build full image
110106
srec_cat -output "${OUTPUT_BASE}/konnected-esp8266-${BRANCH}.bin" -binary "${OUTPUT_BASE}/${IMAGE_NAME}.bin" -binary -fill 0xff 0x0000 0x100000 "${OUTPUT_BASE}/konnected-filesystem-0x100000-${BRANCH}.img" -binary -offset 0x100000
107+
echo "Wrote ${OUTPUT_BASE}/konnected-esp8266-${BRANCH}.bin"
111108

112109
# Copy to common name for ease of flashing
113110
cp "${OUTPUT_BASE}/konnected-esp8266-${BRANCH}.bin" "${OUTPUT_BASE}/konnected-esp8266-latest.bin"
114111

115-
echo "Build Complete: Flash this build with './scripts/flash ${BRANCH} <port>'"
112+
echo "Build Complete:Flash this build with './scripts/flash ${BRANCH} <port>'"
113+
echo "konnected-esp8266-${BRANCH}.bin"
116114

‎src/lfs/application.lua

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,21 @@ local actuators = require("actuators")
66
local settings = require("settings")
77
local ds18b20 = require("ds18b20")
88
local sensorTimer = tmr.create()
9-
local zoneToPin = require("zone_to_pin")
109

1110
-- globals
1211
sensorPut = {}
1312
actuatorGet = {}
13+
function zoneToPin(zone)
14+
-- handle strings or numbers
15+
--return zoneMap[zone] or zoneMap[tonumber(zone)]
16+
if zone == 1 or zone == '1' then return 1 end
17+
if zone == 2 or zone == '2' then return 2 end
18+
if zone == 3 or zone == '3' then return 5 end
19+
if zone == 4 or zone == '4' then return 6 end
20+
if zone == 5 or zone == '5' then return 7 end
21+
if zone == 6 or zone == '6' then return 9 end
22+
if zone == "out" then return 8 end
23+
end
1424

1525
local function getDevicePin(device)
1626
if device.zone ~= nil then

‎src/lfs/aws_iot.lua

+12-11
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ local module = ...
22

33
local mqtt = require('mqtt_ws')
44
local settings = require('settings')
5-
local zoneToPin = require("zone_to_pin")
65
local device_id = wifi.sta.getmac():lower():gsub(':','')
7-
local c = mqtt.Client(settings.aws)
86
local topics = settings.aws.topics
97

108
local sendTimer = tmr.create()
119
local timeout = tmr.create()
1210
local mqttTimeout = tmr.create()
1311
local heartbeat = tmr.create()
1412

13+
-- Global client for method access
14+
mqttC = mqtt(settings.aws)
15+
1516
timeout:register(3000, tmr.ALARM_SEMI, function()
1617
sensorPut[1].retry = (sensorPut[1].retry or 0) + 1
1718
sensorPut[1].message_id = nil
@@ -32,12 +33,12 @@ sendTimer:register(200, tmr.ALARM_AUTO, function(t)
3233
for k, v in pairs(sensorPut) do sensorPut[k] = nil end -- remove all pending sensor updates
3334
tmr.create():alarm(30000, tmr.ALARM_SINGLE, function() node.restart() end) -- reboot in 30 sec
3435
else
35-
local message_id = c.msg_id
36+
local message_id = mqttC.msg_id
3637
local topic = sensor.topic or topics.sensor
3738
sensor.device_id = device_id
3839
print("Heap:", node.heap(), "PUBLISH", "Message ID:", message_id, "Topic:", topic, "Payload:", sjson.encode(sensor))
3940
timeout:start()
40-
c:publish(topic, sensor)
41+
mqttC:publish(topic, sensor)
4142
sensor.message_id = message_id
4243
end
4344
end
@@ -60,24 +61,24 @@ local function startLoop()
6061
print("Heap:", node.heap(), 'Connecting to AWS IoT Endpoint:', settings.endpoint)
6162

6263
local mqttFails = 0
63-
c:on('offline', function()
64+
mqttC:on('offline', function()
6465
mqttFails = mqttFails + 1
6566
print("Heap:", node.heap(), "mqtt: offline", "failures:", mqttFails)
6667
sendTimer:stop()
6768

6869
if mqttFails >= 10 then
6970
tmr.create():alarm(3000, tmr.ALARM_SINGLE, function() node.restart() end) -- reboot in 3 sec
7071
else
71-
c:connect(settings.endpoint)
72+
mqttC:connect(settings.endpoint)
7273
end
7374
end)
7475

7576
mqttTimeout:start()
7677
-- stripping -ats uses the endpoint with a smaller cert chain
77-
c:connect(string.gsub(settings.endpoint, "-ats", ""))
78+
mqttC:connect(string.gsub(settings.endpoint, "-ats", ""))
7879
end
7980

80-
c:on('puback', function(_, message_id)
81+
mqttC:on('puback', function(_, message_id)
8182
print("Heap:", node.heap(), 'PUBACK', 'Message ID:', message_id)
8283
local sensor = sensorPut[1]
8384
if sensor and sensor.message_id == message_id then
@@ -88,7 +89,7 @@ c:on('puback', function(_, message_id)
8889
end
8990
end)
9091

91-
c:on('message', function(_, topic, message)
92+
mqttC:on('message', function(_, topic, message)
9293
print("Heap:", node.heap(), 'topic:', topic, 'msg:', message)
9394
local payload = sjson.decode(message)
9495
local endState = require("switch")(payload)
@@ -112,11 +113,11 @@ c:on('message', function(_, topic, message)
112113
end
113114
end)
114115

115-
c:on('connect', function()
116+
mqttC:on('connect', function()
116117
mqttTimeout:stop()
117118
print("Heap:", node.heap(), "mqtt: connected")
118119
print("Heap:", node.heap(), "Subscribing to topic:", topics.switch)
119-
c:subscribe(topics.switch)
120+
mqttC:subscribe(topics.switch)
120121

121122
-- update current state of actuators upon boot
122123
for i, actuator in pairs(actuatorGet) do

‎src/lfs/device.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local me = {
22
id = "uuid:8f655392-a778-4fee-97b9-4825918" .. string.format("%x", node.chipid()),
33
name = "Konnected",
44
hwVersion = "3.0.0",
5-
swVersion = "3.1.0",
5+
swVersion = "3.1.1",
66
http_port = math.floor(node.chipid()/1000) + 8000,
77
urn = "urn:schemas-konnected-io:device:Security:1"
88
}

‎src/lfs/httpd_res.lua

+1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,6 @@ local httpdResponse = {
6666

6767
return function()
6868
package.loaded[module] = nil
69+
module = nil
6970
return httpdResponse
7071
end

‎src/lfs/mqtt_packet.lua

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
local bit32 = bit32 or bit
22

3-
local function toHex(str)
4-
return str:gsub("(.)", function(s) return string.format("%02x ", string.byte(s)) end)
5-
end
6-
73
local function lengthStr(length)
84
local buf = ""
95
local digit = 0
@@ -66,6 +62,5 @@ end
6662
return {
6763
subscribe = subscribe,
6864
publish = publish,
69-
parse = parse,
70-
toHex = toHex
65+
parse = parse
7166
}

‎src/lfs/mqtt_ws.lua

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local module = ...
12
local mqtt_packet = require('mqtt_packet')
23

34
local function emit(self, event, ...)
@@ -58,12 +59,7 @@ local function Client(aws_settings)
5859
}
5960

6061
ws:on('receive', function(_, msg, opcode, x)
61-
-- print("received", msg:len(), "msg:", msg, "bytes:", mqtt_packet.toHex(msg))
6262
local parsed = mqtt_packet.parse(msg)
63-
-- for k, v in pairs(parsed) do
64-
-- print('>', k, v)
65-
-- end
66-
6763
if parsed.cmd == 4 then
6864
client:emit('puback', parsed.message_id)
6965
elseif parsed.cmd == 3 then
@@ -73,7 +69,6 @@ local function Client(aws_settings)
7369
else
7470
print(parsed)
7571
end
76-
7772
end)
7873

7974
ws:on('close', function(_, status)
@@ -89,6 +84,8 @@ local function Client(aws_settings)
8984
return client
9085
end
9186

92-
return {
93-
Client = Client
94-
}
87+
return function(aws_settings)
88+
package.loaded[module] = nil
89+
module = nil
90+
return Client(aws_settings)
91+
end

‎src/lfs/rest_endpoint.lua

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
local module = ...
22

3-
local zoneToPin = require("zone_to_pin")
4-
53
-- print HTTP status line
64
local function printHttpResponse(code, data)
75
local a = { "Heap:", node.heap(), "HTTP Call:", code }

‎src/lfs/server_receiver.lua

+14-7
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,17 @@ local function httpReceiver(sck, payload)
1717
end
1818
collectgarbage()
1919

20-
local request = require("httpd_req")(payload)
21-
local response = require("httpd_res")()
20+
request = require("httpd_req")(payload)
21+
response = require("httpd_res")()
2222

2323
if request.method == 'OPTIONS' then
2424
print("Heap: ", node.heap(), "HTTP: ", "Options")
2525
response.text(sck, "", nil, nil, table.concat({
2626
"Access-Control-Allow-Methods: POST, GET, PUT, OPTIONS\r\n",
2727
"Access-Control-Allow-Headers: Content-Type\r\n"
2828
}))
29-
return
30-
end
3129

32-
if request.path == "/" then
30+
elseif request.path == "/" then
3331
print("Heap: ", node.heap(), "HTTP: ", "Index")
3432
response.file(sck, "http_index.html")
3533

@@ -41,8 +39,17 @@ local function httpReceiver(sck, payload)
4139
print("Heap: ", node.heap(), "HTTP: ", "Discovery")
4240

4341
elseif request.path == "/settings" then
44-
print("Heap: ", node.heap(), "HTTP: ", "Settings")
45-
response.text(sck, require("server_settings")(request))
42+
if mqttC ~= nil and request.method ~= "GET" then
43+
mqttC:on("offline", function(client)
44+
print("Heap: ", node.heap(), "HTTP: ", "Settings")
45+
response.text(sck, require("server_settings")(request))
46+
end)
47+
mqttC:close()
48+
return
49+
else
50+
print("Heap: ", node.heap(), "HTTP: ", "Settings")
51+
response.text(sck, require("server_settings")(request))
52+
end
4653

4754
elseif request.path == "/device" then
4855
print("Heap: ", node.heap(), "HTTP: ", "Device")

‎src/lfs/variables_build.lua

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
local module = ...
22

3-
43
local function build_list(objects)
54
local out = {}
65
for key, value in pairs(objects) do

‎src/lfs/zone_to_pin.lua

-21
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.