commit f61d177878d858e57355de364f31826bcdfa34f5
parent fb2d869d67691fd42f5e6dfe5ceea07bd28918dd
Author: Vineet Kumar <git@vineetk.net>
Date: Thu, 26 Mar 2026 11:23:37 -0400
keyboards/ploopyco: fix compiler errors about typedefs
Diffstat:
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/keyboards/ploopyco/common/opt_encoder.h b/keyboards/ploopyco/common/opt_encoder.h
@@ -17,6 +17,8 @@
#pragma once
#include <stdint.h>
+//typedef char int8_t;
+//typedef unsigned short uint16_t;
#ifndef SCROLLER_AR_SIZE
# define SCROLLER_AR_SIZE 31
diff --git a/keyboards/ploopyco/common/opt_encoder_default.c b/keyboards/ploopyco/common/opt_encoder_default.c
@@ -16,6 +16,10 @@
*/
#include "opt_encoder.h"
#include <stdbool.h>
+//typedef unsigned char uint8_t;
+//typedef char int8_t;
+//typedef unsigned short uint16_t;
+//typedef enum { false, true } bool;
enum State { HIHI, HILO, LOLO, LOHI };