aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/facew/i2c.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-04-07 07:30:40 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-07 07:30:40 -0700
commit0231caa25aa258a79a7fb73cc57723655055b928 (patch)
tree90624a1942962dcf78a50a5c13bc355c1f43a321 /keyboards/facew/i2c.h
parent5c1ef2bddc0fa5d4753d33a5ec8fed5d9da736c8 (diff)
downloadfirmware-0231caa25aa258a79a7fb73cc57723655055b928.tar.gz
firmware-0231caa25aa258a79a7fb73cc57723655055b928.tar.bz2
firmware-0231caa25aa258a79a7fb73cc57723655055b928.zip
[Keyboard] Refactor FaceW for new BMC changes (#5575)
* use #pragma once for guards * update readme and fix pyusb install instructions * replace custom i2c code with QMK i2c_master * remove unneeded code from config.h * fix keyboard name * remove custom matrix and i2c driver * turn off bootmagic, turn on leds * remove keymap in favor of userspace/community layouts keymap * remove custom matrix * update readme
Diffstat (limited to 'keyboards/facew/i2c.h')
-rw-r--r--keyboards/facew/i2c.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/keyboards/facew/i2c.h b/keyboards/facew/i2c.h
deleted file mode 100644
index 93a69c94d..000000000
--- a/keyboards/facew/i2c.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-Copyright 2016 Luiz Ribeiro <luizribeiro@gmail.com>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-// Please do not modify this file
-
-#ifndef __I2C_H__
-#define __I2C_H__
-
-void i2c_init(void);
-void i2c_set_bitrate(uint16_t bitrate_khz);
-uint8_t i2c_send(uint8_t address, uint8_t *data, uint16_t length);
-
-#endif