Michael Büsch
Michael Büsch
Older or limited filesystems such as FAT don't support huge files. When not writing to a raw device, add an option to automatically split the test files into multiple smaller...
The type check for slice assignment to bytearray derived types seems to be a bit too strict: ``` class MyBytearray(bytearray): pass a = MyBytearray(4) b = MyBytearray(4) a[0:4] = b...
Compile fails on Android since 0.5 due to missing `libc::SECCOMP_SET_MODE_FILTER` constant from `libc` crate. See https://github.com/rust-lang/libc/pull/4330
This PR extends all `target_os` conditionals to include the `android` target. This enables compilation of the crate on the Android platform (e.g. in `termux`).
I'm not sure of this is fundamental enough to warrant being integrated into the `avr-device`, but since we already have a related feature `get_stack_size()` in `avr-device`, I think this is...
This change adds support for connecting to the ATtiny861a device.
This change fixes a division by zero crash in case the user tries to connect to a device that is not supported, yet.