]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
cleanup
authorskullY <skullydazed@gmail.com>
Mon, 28 Jan 2019 01:07:07 +0000 (17:07 -0800)
committerskullydazed <skullydazed@users.noreply.github.com>
Sun, 10 Feb 2019 23:37:12 +0000 (15:37 -0800)
drivers/arm/i2c_master.c
drivers/issi/is31fl3731-simple.c
drivers/issi/is31fl3731-simple.h
quantum/led_matrix.h

index 1c3da2a1a28aff0f42b43b0cabeae4f05496f3a7..50a30ebce77dcfdfa369d3d8e14f8759f82c0ac2 100644 (file)
@@ -67,7 +67,6 @@ uint8_t i2c_start(uint8_t address)
 
 uint8_t i2c_transmit(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)
 {
-  // FIXME: Next steps: Add a print here, copy this file to your rgb_matrix firmware. Compare both.
   i2c_address = address;
   i2cStart(&I2C_DRIVER, &i2cconfig);
   return i2cMasterTransmitTimeout(&I2C_DRIVER, (i2c_address >> 1), data, length, 0, 0, MS2ST(timeout));
index ff6620b72fba267ce52cc4b1bd5735ba869e9fd2..a7faa9c38c0bf73e395afc3a8cb01efe0a455d25 100644 (file)
@@ -1,5 +1,6 @@
 /* Copyright 2017 Jason Williams
  * Copyright 2018 Jack Humbert
+ * Copyright 2019 Clueboard
  *
  * 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
index 3b107d48f6babfcdddc9821ffe0aac64fe4effdd..dbe49828179183f3d1ceac78cfb95df6cb14ae88 100644 (file)
@@ -1,5 +1,6 @@
 /* Copyright 2017 Jason Williams
  * Copyright 2018 Jack Humbert
+ * Copyright 2019 Clueboard
  *
  * 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
index 9bf20d04478d203a328aaca0c456c5d379279f5c..618c5d67674e863a4399ba18eb45417066496621 100644 (file)
@@ -63,8 +63,8 @@ typedef union {
 } led_config_t;
 
 enum led_matrix_effects {
-         LED_MATRIX_UNIFORM_BRIGHTNESS = 1,
-         // All new effects go above this line
+    LED_MATRIX_UNIFORM_BRIGHTNESS = 1,
+    // All new effects go above this line
     LED_MATRIX_EFFECT_MAX
 };