aboutsummaryrefslogtreecommitdiff
path: root/keyboards/fc980c/fc980c.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/fc980c/fc980c.c')
-rw-r--r--keyboards/fc980c/fc980c.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/fc980c/fc980c.c b/keyboards/fc980c/fc980c.c
index b78243105..c09eacfa3 100644
--- a/keyboards/fc980c/fc980c.c
+++ b/keyboards/fc980c/fc980c.c
@@ -14,12 +14,21 @@ GNU General Public License for more details.
14You should have received a copy of the GNU General Public License 14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17
17#include "fc980c.h" 18#include "fc980c.h"
18 19
20#ifdef ACTUATION_DEPTH_ADJUSTMENT
21#include "actuation_point.h"
22#endif
23
19void matrix_init_kb(void) { 24void matrix_init_kb(void) {
20 // put your keyboard start-up code here 25 // put your keyboard start-up code here
21 // runs once when the firmware starts up 26 // runs once when the firmware starts up
22 27
28#ifdef ACTUATION_DEPTH_ADJUSTMENT
29 adjust_actuation_point(ACTUATION_DEPTH_ADJUSTMENT);
30#endif
31
23 matrix_init_user(); 32 matrix_init_user();
24} 33}
25 34