Results 10 issues of sasdf

## general - [x] pip package ## document - [ ] Setup sphinx ## test - [x] uio.file - [ ] uio.sock - [x] uio.spawn - [ ] uio.buffer unit...

Estimate progress of single iteration using average rate. It can make progress bar more responsive when single iteration takes very long to execute. Usage: ```python from tqdm import * tqdm.monitor_interval...

p3-enhancement 🔥

https://github.com/mchehab/zbar/blob/a549566ea11eb03622bd4458a1728ffe3f589163/zbar/img_scanner.c#L965 https://github.com/mchehab/zbar/blob/a549566ea11eb03622bd4458a1728ffe3f589163/zbar/img_scanner.c#L861-L866 This expression `movedelta(-1, 0);` is expanded to ```c p += (-1) + ((uintptr_t)(0) * w); ``` where the RHS is evaluated unsigned as `(uintptr_t) -1` i.e. 0xfff... This...

The older OTBN boot binary in the `Earlgrey-PROD-A2-M6-ROM-RC1` ROM release is different from the one when PR #27679 was authored. The instruction to be patched in the binary built on...

This PR enables basic block coverage for assembly code. Initially, this coverage framework is activated on `crt.S` for testing purposes; support for additional assembly files will be incorporated in subsequent...

### [WIP] This PR refactors FPGA `test_cmd` by separating common setup (initialization, bitstream loading, bootstrapping) and cleanup logic from the core test command. Previously, modifying the test command required repeating...

This pull request introduces `coverage_report` calls in shared libraries like `shutdown` and `rstmgr`. These calls will send reports before initiating a hardware reset, ensuring that coverage data collected up to...

This PR enhances our coverage framework by integrating the ROM_EXT immutable section. It enables the collection of coverage data for this section from end-to-end tests run in `rom_ext` exec_env. The...