projects
/
qmk_firmware.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7a8682
)
Fix a function mismatch that was causing LEDs to not properly initialize
author
TerryMathews
<terry@terrymathews.net>
Fri, 8 Jul 2016 07:40:05 +0000
(
03:40
-0400)
committer
TerryMathews
<terry@terrymathews.net>
Fri, 8 Jul 2016 07:40:05 +0000
(
03:40
-0400)
See #430. Name of function being called at init was updated to
led_init_ports(), but the call itself wasn't renamed.
keyboards/phantom/led.c
patch
|
blob
|
history
diff --git
a/keyboards/phantom/led.c
b/keyboards/phantom/led.c
index b2459c7743395a9d3eeb2497a6ee024b55622772..69dba7d40e75e210e4a76a33c784174d59c403e8 100644
(file)
--- a/
keyboards/phantom/led.c
+++ b/
keyboards/phantom/led.c
@@
-19,7
+19,7
@@
along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "stdint.h"
#include "led.h"
-void led_init(void) {
+void led_init
_ports
(void) {
// * Set our LED pins as output
DDRB |= (1<<6);
DDRB |= (1<<7);