index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
Devices
/
SB16.cpp
Age
Commit message (
Expand
)
Author
2020-03-23
AK: Reduce header dependency graph of String.h
Andreas Kling
2020-03-19
Kernel: Use a const reference to RegisterState in IRQ handling
Liav A
2020-03-08
Kernel: Add missing #includes now that <AK/StdLibExtras.h> is smaller
Andreas Kling
2020-03-06
Kernel: Enable IRQs before sending commands to devices
Liav A
2020-03-02
Kernel: Use klog() instead of kprintf()
Liav A
2020-02-24
Kernel: Update SB16 driver to use the new IRQHandler class
Liav A
2020-02-17
Kernel: Replace "current" with Thread::current and Process::current
Andreas Kling
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-02-09
Kernel: Apply changes to use LibBareMetal definitions
Liav A
2020-01-22
Revert "Kernel: Replace IRQHandler with the new InterruptHandler class"
Andreas Kling
2020-01-22
Kernel: Replace IRQHandler with the new InterruptHandler class
Liav A
2020-01-20
SB16: Map the DMA buffer in kernelspace so we can write to it
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2019-12-01
Kernel: Use a WaitQueue in the SoundBlaster 16 driver
Andreas Kling
2019-11-04
Kernel: Make File's can_read/can_write take a const FileDescription&
Andreas Kling
2019-07-20
Thread: Return a result from block() indicating why the block terminated
Robin Burchell
2019-07-19
Kernel: Restore state strings for block states
Robin Burchell
2019-07-14
SB16: Set "m_interrupted" to false before enabling IRQ's.
Andreas Kling
2019-07-14
Kernel: Add Thread::block_until(Condition).
Andreas Kling
2019-07-13
SB16: Write the correct DMA buffer offset for 16-bit samples.
Andreas Kling
2019-07-13
SB16: IRQ handler should send 0xd5 to pause 16-bit playback.
Andreas Kling
2019-07-13
SB16: Use a snooze alarm to block the current thread while playing.
Andreas Kling
2019-07-13
SB16: Put debug spam behind SB16_DEBUG.
Andreas Kling
2019-07-13
SB16: Use Stereo samples by default.
Andreas Kling
2019-07-13
SB16: Send (sample count, less 1) to the DSP, not the number of bytes.
Andreas Kling
2019-07-13
SB16: Switch to signed 16-bit 44100 Hz Mono by default.
Andreas Kling
2019-07-13
Kernel: First cut of a sb16 driver
Robin Burchell