Steven Michalske
Steven Michalske
Most of my serial ports are opened by the `serial_for_url` factory function. I find that the hwgrep and spy urls are invaluable for bringup and debugging. hwgrep is also quite...
One of the tasks I hate most is switching out parts for a near replacement. Replacing a handful of like components to tweak a parameter on a reused module. These...
Currently footprint names are hard coded in the programs. The footprints should be converted into a class that is then resolved based upon the tool being output into. Optionally we...
Initial implementation of error messages for the macOS port. Interface mostly copied from the linux port. Messages probably need some love for the other errors being reported.
The `IOreturn` value can be passed to the c library function `mach_error_string` to provide the error string for the error that was raised. `mach_error_string` is defined in [mach_error.h](https://opensource.apple.com/source/xnu/xnu-2422.1.72/libsyscall/mach/mach/mach_error.h.auto.html) `char *mach_error_string(mach_error_t...
As small devices have ADC's and other fixed point devices, being able to sample the data and send to upstream devices.
The design currently has a single routing of USB 2.0 pairs. This can cause some adapters with alternate modes to fail to operate properly. Captive plug alternate modes can remap...
- [x] I've checked [docs](https://rich.readthedocs.io/en/latest/introduction.html) and [closed issues](https://github.com/Textualize/rich/issues?q=is%3Aissue+is%3Aclosed) for possible solutions. - [x] I can't find my issue in the [FAQ](https://github.com/Textualize/rich/blob/master/FAQ.md). - Note: writing a custom hi lighter could resolve...
The builtin `iter(callable, sentinel)` from pep [234](https://www.python.org/dev/peps/pep-0234/#python-api-specification) is not implemented. The use case is something like this. ```python with open('file.bin', 'rb') as f: for chunk in iter(lambda: f.read(128), b''): process_chunk(chunk)...
I would like to enable translation of words in the text window using the native Mac translation engine. Using the built in Mac OS translation requires no third party services...