Youngmin Kim

Results 7 comments of Youngmin Kim

I think I found the problem. As a quick fix, you can change default_match_prefix to '.*' in first expect call: ``` interact.expect(PROMPT, default_match_prefix='.*') ```

One thing I suspect is that the device is not in "unconfigured" state. This is the definition of unconfigued LSS slave in CiA® 305 standard proposal: ``` non-configured LSS slave...

The slave in CS_IDENTIFY_NON_CONFIGURED_SLAVE state participates in fastscan. While running fastscan, only one slave with the smallest number of identifier will respond with CS_IDENTIFY_SLAVE state. I hope this will help...

I have libtoxav.so in `/usr/local/lib`. How can I use this library? Thank you.

I did `python setup.py clean` and `python setup.py install`, but there is still the same problem. This is the result of `ldconfig`: ``` $ ldconfig -p | grep toxav libtoxav.so.0...

Hi aitjcize, This is the output ``` $ python setup.py build running build running build_ext building 'pytox' extension creating build creating build/temp.linux-x86_64-2.7 creating build/temp.linux-x86_64-2.7/pytox x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv...

It is working! ``` PyTox/build/lib.linux-x86_64-2.7$ python -c 'from pytox import Tox, ToxAV' PyTox/build/lib.linux-x86_64-2.7$ ``` But in examples folder: ``` PyTox/examples$ python -c 'from pytox import Tox, ToxAV' Traceback (most recent...