Alexandr Zarubkin
Alexandr Zarubkin
Please update the decoder to support ESP32. The upstream is already updated: https://github.com/me-no-dev/EspExceptionDecoder
I'd like to use secondary I2C bus on STM32F103C8. Currently I have to patch the sources. It would be nice to be able to specify the Wire object to use...
The generated function `crc_update` has a parameter `data_len` which sets the number of data bytes. Sometimes there are algorithms (e.g.: https://datasheets.maximintegrated.com/en/ds/MAX14917.pdf) which use nonstandard messages, for example, 11 bits. It...
Take http://zorc.breitbandkatze.de/crc.html for reference. This is just for completeness and for studying purposes rather than for real world usage though.
Hello, Your project provides support to build some compilers (cross and native) for Windows target. Would it be possible to support the other way round - build a compiler which...
I analyze my project using vermin and I found that `--no-make-paths-absolute` makes vermin unable to detect files in the most simple invocation. I try: `vermin --no-make-paths-absolute .` to analyze the...
Currently the code reads files by 8 Kb chunks: https://github.com/arjan-s/python-zipstream/blob/961886fbb77530515bf6b3f595dd5fd29c1c1c97/zipstream/__init__.py#L310 Would it be beneficial to make it configurable?
I'd like to supply my local U-Boot build for the Beaglebone Black. I'm running the script with the following parameters: ``` ./setup_sdcard.sh --img-1gb my_image --dtb beaglebone --spl --bootloader --rootfs_label rootfs...
Please create a new release since there have been some commits after the last release was created.
According to https://github.com/tonton81/WDT_T4/blob/1910b57d24468cd3419959118a2e1e6192f5e7fa/examples/watchdog3_demo/watchdog3_demo.ino#L14-L15, the timeout and window parameters are set in seconds. But in the loop() function, the calculations are done using `millis()`, hence, in milliseconds: https://github.com/tonton81/WDT_T4/blob/1910b57d24468cd3419959118a2e1e6192f5e7fa/examples/watchdog3_demo/watchdog3_demo.ino#L23-L30 So the watchdog...