Remove i2c logic for STM32F103xB in favour of USE_I2CV1 (#6926)
[jackhill/qmk/firmware.git] / keyboards / ergodox_stm32 / config.h
CommitLineData
c61d7d7c
YF
1/*
2Copyright 2019 Yaotian Feng(Codetector) <codetector@codetector.cn>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#pragma once
18
19#include "config_common.h"
20
21#define VENDOR_ID 0xFEED
22#define PRODUCT_ID 0x1308
23#define DEVICE_VER 0x101
24#define MANUFACTURER ErgoDox
25#define PRODUCT ErgoDox STM
26#define DESCRIPTION ErgoDox STM32 Keyboard
27
28#define MATRIX_ROWS 14
29#define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
30#define MATRIX_COLS 6
31/* key combination for command */
32#define IS_COMMAND() ( \
33 keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
34 keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
35)
a4846859
JC
36
37// i2c_master driver config
38#define I2C1_CLOCK_SPEED 400000
39#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2