Philip Gladstone

Results 113 comments of Philip Gladstone

I suspect that a bigger 'slop' is required to deal with some (small) time skew between client and OCSP server. I'd default it to 10 seconds, but allow an arbitrary...

Yes it does (a bit). These are some counts of which second was reported for FT8: ``` 2918875 0 423131 1 192628 2 99906 3 55023 4 31087 5 18745...

Thanks for this PR -- I merged it into my PR to get to IDF 5.5 for the ESP32C5 support. I'm left with having to fixup the CAN support which...

It is quite tricky to make it connect to a 5GHz network, but I did succeed: {"bssid":"26:5a:4c:5d:73:fd","ssid":"Chateau Gladstone 5GHz","channel":36,"auth":3} If I tried to connect to a network with both 2.4...

I don't think that this branch should be merged until the version of the IDF is released that supports the C5. Not clear when that will be.

I was thinking about that -- my initial thought was to add support for an enhanced version of http://www.inf.puc-rio.br/~roberto/struct/ which added support for bit fields. For example, allow "I:n" and...

I'm working on this -- but taking a slightly different approach -- adding some useful methods to extract a bitfield from consecutive bits in various little/big endian styles.

The equivalent of your example `[0:4] *10 + [4:4] + [8:4] * 0.1` is ```lua function decode(packets) -- assume we have validated checksum etc local p = packets[1] return {val=p[{0,4}]...

Quick question -- which do you think is more natural -- starting with bot 0 as the least significant bit of the first byte, or bit 0 is the most...