mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
IO: Remove out-of-date comment.
This commit is contained in:
parent
030a0bcb0c
commit
2064689d46
@ -57,17 +57,11 @@ void IO::lcd_backlight(const bool value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IO::lcd_reset_state(const bool active) {
|
void IO::lcd_reset_state(const bool active) {
|
||||||
/* NOTE: This overwrites the contents of the IO register, which for now
|
|
||||||
* have no significance. But someday...?
|
|
||||||
*/
|
|
||||||
io_reg = (io_reg & 0xfe) | ((active ? 1 : 0) << 0);
|
io_reg = (io_reg & 0xfe) | ((active ? 1 : 0) << 0);
|
||||||
io_write(1, io_reg);
|
io_write(1, io_reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IO::audio_reset_state(const bool active) {
|
void IO::audio_reset_state(const bool active) {
|
||||||
/* Reset signal for audio codec. Some audio codecs (e.g. WM8731) do not
|
|
||||||
* implement reset signal, only soft reset via I2C.
|
|
||||||
*/
|
|
||||||
/* NOTE: This overwrites the contents of the IO register, which for now
|
/* NOTE: This overwrites the contents of the IO register, which for now
|
||||||
* have no significance. But someday...?
|
* have no significance. But someday...?
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user