Dirk-Willem van Gulik
Dirk-Willem van Gulik
Tiny tweak to also validate the KID in the single signer scenario.
Change hardcoded reference to pin22/GPIO25 to the constant; update example code to show the entire card UID (rather than just the first four digits)
Increasingly we have flash filenames like foo.ino.hex (Ardino) or foo.s8.hex or foo.signed.hex (or pkcs8/p8) for signed HEXes. This confuses stm8flash - and gives a `Due to its file extension (or...
to deal with things like foo.ino.hex; or foo.sig.hex which are increasingly common. (Fixes #150)
On an external keyboard (rotating wheel) I nicely see the volume up/down and mute events coming in, in the event viewer (Inter, BigSur 11.4, Karabiner 13.4.0): ``` type:down HID usage:12,234...
Interrupts for Timer3 (see demo program below) appeared not to work (timer 2 is fine). Applying below makes this work. ``` diff --git a/ch55xduino/ch55x/cores/ch55xduino/main.c b/ch55xduino/ch55x/cores/ch55xduino/main.c index 58a5483..76a2d60 100644 --- a/ch55xduino/ch55x/cores/ch55xduino/main.c...
Cursory tested on CH558L -- only 'substantive' change sofar is the 64 to 48k memory of flash and the 4k XRAM sizes. Appears to work (well). The DMA uses fewer...
Tables appear to not be quite working; given a trivial 1 entry EntityMIB table with one entry: snmp.addReadOnlyIntegerHandler(oidEntPhysicalIndex, 1); snmp.addReadOnlyIntegerHandler(entPhysicalContainedIn,0 /* top level item/container */); snmp.addReadOnlyIntegerHandler(oidEntPhysicalClass, 1 /* (other) */);...
Line https://github.com/0neblock/Arduino_SNMP/blob/7ae4c66d9a83a20d7657f1cf58c1b44d18742e24/src/BERDecode.cpp#L92 probably needs to be simply tempVal |= .... to quell a compiler warning on the latest IDE.
During a congested network - I got reproducable segaults in: https://github.com/me-no-dev/ESPAsyncWebServer/blob/67de9cddbbf0d024c61a314bacd204ba6101fac8/src/AsyncWebSocket.cpp#L646 it appears that data can be NULL (and datalen = 0). Given that in line https://github.com/me-no-dev/ESPAsyncWebServer/blob/67de9cddbbf0d024c61a314bacd204ba6101fac8/src/AsyncWebSocket.cpp#L698 this is only...