Skip to content

Latest commit

 

History

History
77 lines (63 loc) · 2.53 KB

TODO.md

File metadata and controls

77 lines (63 loc) · 2.53 KB

TODO

TODO

Documentation

  • godoc
  • build documentation
  • user manuals
  • man/info page

Other

  1. Consistently include device serial number in output e.g. of get-time
  2. Integration tests
  3. Verify fields in listen events/status replies against SDK:
    • battery status can be (at least) 0x00, 0x01 and 0x04
  4. TUI

Miscellaneous

  1. syncthing
  2. bash scripts to retrieve all events:
    -- get-event
    #/bin/bash
    ./bin/uhppote-cli get-event $1
    
    -- get-events
    #/bin/bash
    N=1
    while [ $n -le 5 ]
    do
       ./get-event 405419896
       N=$(( N+1 ))
    done
    
    ./get-events 1> >(tee -a x.log y.log 1> /dev/null) 2>> errors.log