Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add base FAve 84H firmware #15967

Merged
merged 8 commits into from
Jan 30, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move LED config in ifdef
  • Loading branch information
Wolf Van Herreweghe committed Jan 22, 2022
commit f6632814a081fbbd43e786a06133c65a12bc8007
6 changes: 4 additions & 2 deletions keyboards/linworks/fave84h/fave84h.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fave84h.h"

led_config_t g_led_config = {
#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = {
{
// Key Matrix to LED Index
{ 47, NO_LED, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62 },
Expand Down Expand Up @@ -45,4 +46,5 @@ led_config_t g_led_config = {
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
}
};
};
#endif