hinxx
hinxx
I'm using the buspirate programmer and it is reading/erasing/writing/verifying the 16Mb image for the W25Q128.V for about 4 hours now and it is still not done :) I'd say your...
FWIW, I just managed to read/erase/write/verify the whole chip in one go. ``` $ flashrom --programmer buspirate_spi:dev=/dev/ttyUSB0 -c "W25Q128.V" -w spiflash/flash-dump.bin flashrom v0.9.9-r1954 on Linux 5.4.0-60-generic (x86_64) flashrom is free...
Sorry for late response. I get the following error when running `ipmitool.py ... sdr list` command: ``` Traceback (most recent call last): File "/home/bddev/labmachines/venv/bin/ipmitool.py", line 11, in load_entry_point('python-ipmi', 'console_scripts', 'ipmitool.py')()...
> Are you verying with C++ and generating with C? If, so you can try pad the buffer with extra zeros up to an aligned boundary, e.g. 8 bytes, and...
I've fed the flatcc binary buffer into C++ verifier. It also fails. Here is the C++ buffer again, after the hexdump the verification is made. No errors. Then I get...
Here are the results with using `int64_t` instead of `double` for my _value_ element. I used `0x1122334455667788` for the _value_. I also used `0x1234567812345678` for the _timestamp_ element. Now it...
If I build the buffer using start/end it works as expected! ``` LogData_start_as_root(B); Long_ref_t val = LogData_value_Long_create(B, 0x1122334455667788); Value_union_ref_t un = Value_as_Long(val); LogData_source_name_create_str(B, "LAB:det10:ArrayCounter_RBV"); LogData_timestamp_add(B, 0x1234567812345678); LogData_value_add_value(B, un); LogData_value_add_type(B, un.type);...
> Just to summarize your above postings: You do have it working for your needs now? Yeah. It works OK now with start/end. I had the `flatcc_builder_init()` all this time....
> Too many vertices in ImDrawList using 16-bit indices. Read comment above I think this can be dealt with. See imGui `imconfig.h`: ``` //---- Use 32-bit vertex indices (default is...
Sorry for hijacking this thread but I'm looking at getting more performance out of my app, too. I will have multiple data streams coming in over TCP/IP at update rate...