No description
Find a file
2025-02-27 11:34:48 +01:00
docker uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00
firmware_update uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00
server/flask renamed files 2025-02-26 16:39:57 +01:00
cmd_reset.sh test cases for rtc and reset command 2025-02-20 18:04:58 +01:00
cmd_rtc.sh test cases for rtc and reset command 2025-02-20 18:04:58 +01:00
create_firmware_update.sh scipt to generate firmware updates 2025-02-27 11:34:48 +01:00
main.py renamed files 2025-02-26 16:39:57 +01:00
README.md sdlogger working upload and logging 2025-02-20 18:04:19 +01:00
uota.cfg uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00
version uOTA firmware update and docker file 2025-02-25 17:44:51 +01:00

SDLOGGER

sdlogger takes all data from uart0 rx and writes it onto a sdcard.

available commands

  • RTC
    • "epoch" : unix timestamp in seconds
  • upload
    • wlan_ssid
    • wlan_password: optional, do not provide if open wlan is to be used
    • upload_server: server URL, e.g.: "http://localhost" port 80/443 will get autoassigned based on http or https
    • router_mac: mac address of the router, will be used in filename
  • UOTA
    • wlan_ssid
    • wlan_password: optional, do not provide if open wlan is to be used
  • reset
    • no options

creating JSON for commands

#! /usr/bin/env python
import json

json.dumps({'cmd': 'RTC','epoch':123456778890})