aboutsummaryrefslogtreecommitdiff
path: root/keyboards/fc660c/fc660c.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/fc660c/fc660c.c')
-rw-r--r--keyboards/fc660c/fc660c.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/fc660c/fc660c.c b/keyboards/fc660c/fc660c.c
index f2a561767..da6ba9e74 100644
--- a/keyboards/fc660c/fc660c.c
+++ b/keyboards/fc660c/fc660c.c
@@ -16,10 +16,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17#include "fc660c.h" 17#include "fc660c.h"
18 18
19#ifdef ACTUATION_DEPTH_ADJUSTMENT
20#include "actuation_point.h"
21#endif
22
19void matrix_init_kb(void) { 23void matrix_init_kb(void) {
20 // put your keyboard start-up code here 24 // put your keyboard start-up code here
21 // runs once when the firmware starts up 25 // runs once when the firmware starts up
22 26
27#ifdef ACTUATION_DEPTH_ADJUSTMENT
28 adjust_actuation_point(ACTUATION_DEPTH_ADJUSTMENT);
29#endif
30
23 matrix_init_user(); 31 matrix_init_user();
24} 32}
25 33