Reduce i2c timeouts for rgb led supported hardware (#360)

* Reduce i2c timeouts for rgb led supported hardware

* update

* make defines more consistent
This commit is contained in:
Drashna Jaelre
2022-10-27 22:43:40 -07:00
committed by GitHub
parent 89e3c4c0da
commit d9f575fa86
5 changed files with 31 additions and 16 deletions

View File

@@ -1,9 +1,15 @@
#pragma once
#ifdef AUDIO_ENABLE
#ifndef STARTUP_SONG
# define STARTUP_SONG SONG(E__NOTE(_DS5), E__NOTE(_D5), E__NOTE(_AS4), Q__NOTE(_F5))
# ifndef STARTUP_SONG
# define STARTUP_SONG SONG(E__NOTE(_DS5), E__NOTE(_D5), E__NOTE(_AS4), Q__NOTE(_F5))
# endif
# ifndef GOODBYE_SONG
# define GOODBYE_SONG SONG(E__NOTE(_D5), E__NOTE(_F5), E__NOTE(_C5), Q__NOTE(_AS4))
# endif
#endif
#ifndef GOODBYE_SONG
# define GOODBYE_SONG SONG(E__NOTE(_D5), E__NOTE(_F5), E__NOTE(_C5), Q__NOTE(_AS4))
#endif
#ifndef ISSI_TIMEOUT
# define ISSI_TIMEOUT 5
#endif