mitchmindtree
0ff0b65647
Add ASIO guide to README
2019-07-05 05:51:27 +10:00
Tom Gowan
ab3b76ad75
fixes, remove transmute
2019-07-05 05:51:26 +10:00
Tom Gowan
7950045240
minor fixes
2019-07-05 05:51:26 +10:00
Tom Gowan
062205160c
remove build.bat
2019-07-05 05:51:26 +10:00
Tom Gowan
25070464f9
git ignore, temp files, fetch_add, os cfg
2019-07-05 05:51:26 +10:00
Tom Gowan
523d25ad49
remove u16
2019-07-05 05:51:26 +10:00
Tom Gowan
616974353b
opt in and bug fix
2019-07-05 05:51:26 +10:00
Tom Gowan
1f24c76e6a
commenting and rustfmt for device
2019-07-05 05:51:26 +10:00
Tom Gowan
5248455cb7
commets and rustfmt for stream
2019-07-05 05:51:25 +10:00
Tom Gowan
72c5e9a8c1
asio sys lib comments and rust fmt
2019-07-05 05:51:25 +10:00
Tom Gowan
f6d1a74be2
asio sys lib comments and rust fmt
2019-07-05 05:51:25 +10:00
Tom Gowan
ffcbc02e52
multi channels
2019-07-05 05:51:25 +10:00
Tom Gowan
6e0eb073d1
sample rate support
2019-07-05 05:51:25 +10:00
Tom Gowan
b0b0484d4b
endian conversion
2019-07-05 05:51:25 +10:00
Tom Gowan
5ec6da3aad
Fixed driver bug
2019-07-05 05:51:24 +10:00
Tom Gowan
6a71f0a801
choose backend
2019-07-05 05:51:24 +10:00
Tom Gowan
91f2edb277
utils as mod
2019-07-05 05:51:24 +10:00
Tom Gowan
ed50bb9923
adding outputs
2019-07-05 05:51:24 +10:00
Tom Gowan
ff7fd62a2d
clean up
2019-07-05 05:51:24 +10:00
Tom Gowan
93f75940d6
fixed offset bug
2019-07-05 05:51:24 +10:00
Tom Gowan
8193bc9f79
sharing asio streams
2019-07-05 05:51:24 +10:00
Tom Gowan
76eb07a274
Multiple streams
2019-07-05 05:51:23 +10:00
Tom Gowan
c24fa62028
error handling
2019-07-05 05:51:23 +10:00
Tom Gowan
ec172bbc47
error wrappers
2019-07-05 05:51:23 +10:00
Tom Gowan
4ba291e8be
multi channel support
2019-07-05 05:51:23 +10:00
Tom Gowan
2ef7008615
Keep driver alive
2019-07-05 05:51:23 +10:00
Tom Gowan
ae7a03d788
Device rewrite Fixes #1 Fixes #12
2019-07-05 05:51:23 +10:00
Tom Gowan
056630cca3
removed allocation from output
2019-07-05 05:51:23 +10:00
Tom Gowan
910e0ba351
working record wav
2019-07-05 05:51:22 +10:00
Tom Gowan
d430000d2c
beep working
2019-07-05 05:51:22 +10:00
Tom Gowan
8d5cb951d8
asio_utils
2019-07-05 05:51:22 +10:00
Tom Gowan
9c355f5579
fixed buffer
2019-07-05 05:51:22 +10:00
DMSDeveloper
c8c00793c0
attemp at removing buffer 2
2019-07-05 05:51:22 +10:00
DMSDeveloper
ab7e17558f
attemp at removing buffer
2019-07-05 05:51:22 +10:00
DMSDeveloper
9a084347db
removed itertools
2019-07-05 05:51:21 +10:00
DMSDeveloper
892024f5d8
minor fixes 2
2019-07-05 05:51:21 +10:00
DMSDeveloper
a1740a9282
record wav working v1
2019-07-05 05:51:21 +10:00
DMSDeveloper
fe4d108477
minor fixes
2019-07-05 05:51:21 +10:00
DMSDeveloper
c978583863
recording v1
2019-07-05 05:51:21 +10:00
DMSDeveloper
2cfd60757a
working on windows
2019-07-05 05:51:21 +10:00
Tom Gowan
49968f4b82
change of branch
2019-07-05 05:51:21 +10:00
mitchmindtree
e0a0dc9ec7
Merge pull request #295 from mitchmindtree/traits_refactor
...
Refactor `Host` and related traits into a new `traits` module
2019-07-04 21:47:52 +02:00
Jake Shadle
d59b4decf7
Return stdweb to old version
2019-07-01 17:44:23 +02:00
Jake Shadle
04b6d66eed
Bump dependencies
2019-07-01 17:43:18 +02:00
mitchmindtree
5e4f384992
Refactor `Host` and related traits into a new `traits` module
...
This is a draft implementation of #294 . I'll leave this open for
feedback and potentially better trait naming suggestions or better
solutions in general!
cc @ishitatsuyuki
2019-06-29 14:45:15 +02:00
mitchmindtree
36dee482bd
Merge pull request #290 from mitchmindtree/macos_condvar
...
Remove macOS sleep loop in favour of using `Condvar`
2019-06-26 02:28:16 +02:00
mitchmindtree
3603cbaee7
Remove macOS sleep loop in favour of using `Condvar`
...
This solution was originally posted by @HybridEidolon in #185 . Sorry it
took so long! I thought it might be easier to open a new PR as half of
your implementation here has already been implemented in a following PR
(namely, the change from an unnecessary `Vec` of callbacks to a single
user callback).
Closes #185 .
2019-06-25 17:38:54 +02:00
mitchmindtree
7e413cb660
Merge pull request #289 from mitchmindtree/host
...
Introduce a `Host` API
2019-06-25 17:31:35 +02:00
mitchmindtree
51eba20c44
Remove DefaultHost type in favour of determining at runtime
...
Re-exports host-specific types so that they are available within the
platform module if necessary (e.g. host::asla::Host as AlsaHost).
Allows for converting platform-specific host types (e.g. AlsaHost) into
the dynamically dispatched type generated for the target platform
(`Host`).
2019-06-25 16:54:50 +02:00
mitchmindtree
283a73054e
Address some nits highlighted by ishitatsuyuki
2019-06-25 16:26:27 +02:00