aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ristretto
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ristretto')
-rw-r--r--keyboards/ristretto/ristretto.c28
-rw-r--r--keyboards/ristretto/rules.mk3
2 files changed, 16 insertions, 15 deletions
diff --git a/keyboards/ristretto/ristretto.c b/keyboards/ristretto/ristretto.c
index 1ea43bcee..a39c366b0 100644
--- a/keyboards/ristretto/ristretto.c
+++ b/keyboards/ristretto/ristretto.c
@@ -1,17 +1,17 @@
1/* Copyright 2021 Brandon Lewis 1/* Copyright 2021 Brandon Lewis
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or 5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version. 6 * (at your option) any later version.
7 * 7 *
8 * This program is distributed in the hope that it will be useful, 8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details. 11 * GNU General Public License for more details.
12 * 12 *
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17#include "ristretto.h" 17#include "ristretto.h"
@@ -35,7 +35,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
35 return true; 35 return true;
36} 36}
37 37
38#ifdef OLED_DRIVER_ENABLE 38#ifdef OLED_ENABLE
39oled_rotation_t oled_init_user(oled_rotation_t rotation) { 39oled_rotation_t oled_init_user(oled_rotation_t rotation) {
40 return OLED_ROTATION_270; 40 return OLED_ROTATION_270;
41} 41}
diff --git a/keyboards/ristretto/rules.mk b/keyboards/ristretto/rules.mk
index a24dc0c54..0be0b414a 100644
--- a/keyboards/ristretto/rules.mk
+++ b/keyboards/ristretto/rules.mk
@@ -21,5 +21,6 @@ RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth 21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output 22AUDIO_ENABLE = no # Audio output
23ENCODER_ENABLE = yes 23ENCODER_ENABLE = yes
24OLED_DRIVER_ENABLE = yes 24OLED_ENABLE = yes
25OLED_DRIVER = SSD1306
25WAIT_FOR_USB = yes 26WAIT_FOR_USB = yes