John-Mark Gurney
1a4eaedea5
refactor things a bit more into support mk files...
2 years ago
John-Mark Gurney
4a2795a593
s/liblora/libsyote/ s/lora_comms/syote_comms/
2 years ago
John-Mark Gurney
6ae7529c16
rearch builds a bit.. start migrating various build options to mk/* files..
2 years ago
John-Mark Gurney
3bda6240a8
forgot to fix this to compile w/ new api
2 years ago
John-Mark Gurney
6f74cee4e6
implement the C (responder) side of ecdhe...
2 years ago
John-Mark Gurney
d0c6981410
use bytes.fromhex instead...
2 years ago
John-Mark Gurney
07fea7395f
mention the specific curve/dh used..
2 years ago
John-Mark Gurney
550ee42cfb
implement the python initiator for ecdhe key exchange...
2 years ago
John-Mark Gurney
8501f5ab27
implement an x25519 class and add various tests for it
2 years ago
John-Mark Gurney
a3d7add3e5
move x25519 tests to _comms module, more will be added..
2 years ago
John-Mark Gurney
c6a082befe
fix deprecation notice, add shared to test name
2 years ago
John-Mark Gurney
27619d0050
start ecdhe support, wrap x25519 as this will be needed..
2 years ago
John-Mark Gurney
188e475c86
add the ecdhe definition, this has not been reviewed yet..
2 years ago
John-Mark Gurney
f5d3142efb
move key negotiation to common section, define ecdhe
2 years ago
John-Mark Gurney
db35f09a36
clean up key negotiation, and document commands and queueing system..
2 years ago
John-Mark Gurney
5fcf20ed36
pull in the domain defines in prep to support additional (ecdhe) ones
2 years ago
John-Mark Gurney
b3ec53c4cb
drop debug print
2 years ago
John-Mark Gurney
2a35f5648e
use funopen/stdio to buffer output, "fix" for FreeBSD...
convert to using stdio to line buffer usb output... This reduces
usb traffic like when doing hexdump...
The delay works, but could be a problem on slower systems... It's
been reported, so hopefully a fix will happen..
3 years ago
John-Mark Gurney
95c19fa600
use python3, note how to run w/ FreeBSD, and code quality...
python2 is incompatible w/ python3 code, and assuming that python
is 3 is bad, so use python3 which ensures that the correct version
will be run...
3 years ago
John-Mark Gurney
aed17ebf69
use python3 to run python 3 programs... Using python is a mistake
and should only be used w/ Python 2 scripts.
3 years ago
John-Mark Gurney
5baba3ad59
add memory debug buffer.. Fix FreeBSD by adding a delay..
3 years ago
John-Mark Gurney
e77c0edcdc
if pkt too large, ignore, restart rx on err/timeout, loop processing schedule..
The first one is just more defensive programming, not sure if I'd seen
this failure..
The middle one did fix some hangs...
Last one is to ensure that the schedule processes more quickly and
not enforce each command to take one ms...
3 years ago
John-Mark Gurney
9bbf03c6db
use sbrk(0) instead of end to get the uninitalized memory...
This is better, as if anyone allocated memory before, we will not use
that memory, and still use uninitalized memory..
3 years ago
John-Mark Gurney
5642c46c66
make sure a short packet doesn't cause an assert failure...
3 years ago
John-Mark Gurney
4a4ef7b580
make sure OBJDIR doesn't match CURDIR..
3 years ago
John-Mark Gurney
de3acae8ab
the files need to be marked PHONEY so they are ALWAYS rebuilt..
3 years ago
John-Mark Gurney
91a6fb590b
convert link to https..
3 years ago
John-Mark Gurney
831fe68862
various spelling fixes..
3 years ago
John-Mark Gurney
fe44e796bf
language fixes, improvments, and document commands..
Better describe how to hook things up..
Also, document all the commands, and the difference between the
immediate commands and the queue commands..
3 years ago
John-Mark Gurney
dfac9f97b0
the deps make duplicate files, uniqify them so entr can handle the list...
3 years ago
John-Mark Gurney
e8b1fc65d3
make sure the irrigation key file is ignored...
3 years ago
John-Mark Gurney
9fc72aa4f5
add some usage to README, also doc and improve shared key use/gen...
3 years ago
John-Mark Gurney
a8a6c4f66a
use ```, as gitea's markdown doesn't render them well...
Provide a comment on how to address it..
3 years ago
John-Mark Gurney
6d50c7f976
add an architecture section and a couple diagrams...
Mark this as a Markdeep document.. If you hard link or copy README.md
this to an html file, it will reader it as a nice html document..
3 years ago
John-Mark Gurney
38510f74da
add some diagrams, and the infrastructure to make them...
These will be integrated into the code shortly..
3 years ago
John-Mark Gurney
519ad4711a
expand on how to use this project...
3 years ago
John-Mark Gurney
83892f4506
link to bmake which should be buildable on other platforms..
3 years ago
John-Mark Gurney
a9aa658b55
reenable seeding prng w/ rssi.. up preamble from 4 to 8 for reliability...
Before this, I was VERY frequently having to retry.. changing just
the gw improved things significantly, but changing it on both results
is no observable retries.. This is also the default that the example
apps in loramac uses..
3 years ago
John-Mark Gurney
a5e5676405
support cmds from file, add advance and clear commands, change init
Don't start up w/ the first four channels on... We only want that
for the LED to let us know it's running...
3 years ago
John-Mark Gurney
e1e58ef029
add invert for channels, implement scheduling...
3 years ago
John-Mark Gurney
62ddf5d243
start implementing the core part of the irrigation controller...
This gets basic comms working and setunset working as well... It
makes the LED blink!
3 years ago
John-Mark Gurney
bf5934f693
add setunset command to set the state of a channel.. useful for testing..
3 years ago
John-Mark Gurney
d55589790a
this error should be asyncio.TimeoutError, make retries faster...
Turns out that the base TimeoutError is different than the asyncio
version, and so we weren't actually retrying packets, just terminating
early...
3 years ago
John-Mark Gurney
0875be381d
make sure we filp back to rx after we're done tx'ing...
eliminate the strobe code as it isn't used, this just pushes
packets back and forth..
3 years ago
John-Mark Gurney
f2325ec176
make sure we don't buffer the serial port, we need the packets to
be transmitted now.
3 years ago
John-Mark Gurney
8bb1db837c
fix up the dep generation to include the new files..
3 years ago
John-Mark Gurney
4f71fa354b
add infrastructure to support the gateway and irrigation firmwares..
This can now easily be expanded to support other projects as well..
3 years ago
John-Mark Gurney
0c2feac137
change the default to be func..
3 years ago
John-Mark Gurney
eef68ad27b
add a CLI, for both initiator and respondent...
both take a shared key as an argument...
the respondent arg (-r) takes an argument specifying the function to
call w/ the messages... The form is: module_path[:name.of.func]. If
the name is not specified, func will be used.
3 years ago
John-Mark Gurney
ea28de7420
forgot to add the copyright for this file..
3 years ago