Peter Samarin

Results 9 comments of Peter Samarin

Great catch, thank you! I believe, it will take more than just that one line to fix it.

To set the slave address use the generic when instantiating: ``` generic map ( MINION_ADDR => "0000011", ... ``` The module was tested on a Spartan3-Board talking to a µC...

Each slave has its own unique address on the bus. If you want a slave to answer to a range of addresses, you will have to modify the code.

Jazzer.js jest-runner can run in two modes: regression, and fuzzing. Jazzer.js auto-generates the directories for each mode and test. In regression mode for your tests in `regression.test.fuzz.js` three directories are...

> Do you mean I should add a regression sub directory to each of those directories and move the files there? Jazzer.js automatically generates all necessary directories for both modes...

This problem might benefit from enabling "value profile" (see https://github.com/CodeIntelligenceTesting/jazzer/blob/main/docs/advanced.md#value-profile). If not, you could also try using Jazzers `exploreState()` function (see the MazeRunner on how to use it: https://github.com/CodeIntelligenceTesting/jazzer/blob/main/examples/src/main/java/com/example/MazeFuzzer.java). You...

You can use the `FuzzedDataProvider` that can help you with splitting up `data` (which is a `Buffer`) that you get from the fuzzer. Here is an example: https://github.com/CodeIntelligenceTesting/jazzer.js/blob/main/examples/bug-detectors/command-injection/fuzz.js

In the example above, `keyString` will always be undefined.

My guess is, `cvRegisterType` was probably renamed or removed from OpenCV. That change should be mirrored in the racket bindings.