Mike Causer
Mike Causer
You're right. Scroll doesn't work as expected. I'll look into it and make a fix.
On MacOS 13.2 ```diff - #define _subborrow_u64(a,b,c,d) __builtin_ia32_sbb_u64(a,b,c,(long long unsigned int*)d); + #define _subborrow_u64(a,b,c,d) __builtin_ia32_subborrow_u64(a,b,c,(long long unsigned int*)d); ``` Getting warmer ```make mike@macbook albertobsd--keyhunt % make g++ -O3 -c oldbloom/bloom.cpp...
Got past the error. Still a few warnings to fix. https://github.com/albertobsd/keyhunt/pull/202
> Did you tested if it works properly, i mean it hit the examples keys? Yep, using PR #202 ``` mike@macbook keyhunt % ./keyhunt -m address -f tests/1to32.txt -r 1:FFFFFFFF...
If they can't be deleted for whatever reason, flagging them so they wont be included in any future attempts will save distributed resources.
I've added a user configurable timeout PR #21
Merged, finally. Thanks 😄
Nice one. I found this in English - is that the same module? http://wiki.sunfounder.cc/index.php?title=GY-33_Color_Recognition_Sensor_Module
Added in 2b79a93a56ec3d1bf2cf53e256407577a567204e
The `machine.Pin()` class works slightly differently on each port. On the RP2 pico port, pins are represented as integers. https://docs.micropython.org/en/latest/rp2/quickref.html#pins-and-gpio Replace the `Pin('X5')` with `Pin(5)` `X5` is a STM32 port...