gotnone

Results 32 comments of gotnone

@DarkenedOrigins , I was looking at your pull request and I have a question. Why did you decide to allocate the vector numArr on the heap instead of just as...

@DarkenedOrigins, My understanding is that std::vector already implements it's internal data structure on the heap, so I don't believe that stack overflow will be an issue. If some of the...

A difference that I see between the Env of a build with debug_build_flags = -g3 and a default debug build is that LINKFLAGS contains -g3 and other debug_build_flags if specified...

## This problem also effects Nordic NRF52-DK I have discovered a problem with my `platformio.ini`. I was not using the `src_filter` correctly, which caused the original build issues and missing...

I had to insert `&str_count_word_bytes=1` into the tag. The output is from the following command line: `tag_rw2 --type=string --tag="protocol=ab-eip&gateway=192.168.1.246&plc=Micro800&elem_size=80&str_count_word_bytes=1&elem_count=1&name=Test4" --debug=4` `Test4` is a `Controller Variable` according to CCW. It is...

I had to insert `&str_count_word_bytes=1` into the tag. The output is from the following command line: `tag_rw2 --type=string --tag="protocol=ab-eip&gateway=192.168.1.246&plc=Micro800&elem_size=80str_count_word_bytes=1&elem_count=2&name=Test5" --debug=4` `Test5` is a `Controller Variable` according to CCW. It is...

I can confirm that strings are limited to a maximum of 255 bytes in the CCW interface. I played with various string options, but could not find a good combination...

The default string length in CCW is 80 characters. You can go up to a maximum of 255 characters. The total length is the string length selected in CCW +...

This PR does have a significant caveat: I don't have the ability to test this on anything other than windows at the moment. The use of `char *` may not...

After getting my hands on a linux machine. I can say that the libusb and hidraw implementations also appear to work correctly. The limitation on this may be the fact...