Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed committed Feb 10, 2019
1 parent 84879f2 commit 1a680c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion drivers/arm/i2c_master.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
1 change: 1 addition & 0 deletions drivers/issi/is31fl3731-simple.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions drivers/issi/is31fl3731-simple.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions quantum/led_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit 1a680c1

Please sign in to comment.