mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-14 17:27:39 +00:00
IO: Remove out-of-date comment.
This commit is contained in:
@@ -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...?
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user