1
0
Fork 0

led_matrix works now

This commit is contained in:
skullY 2019-01-26 21:25:59 -08:00 committed by skullydazed
parent bf2670601d
commit 6b74dd6de5
7 changed files with 45 additions and 39 deletions

View file

@ -26,6 +26,16 @@
#include "ch.h"
#include <hal.h>
#ifndef I2C1_BANK
#define I2C1_BANK GPIOB
#endif
#ifndef I2C1_SCL
#define I2C1_SCL 6
#endif
#ifndef I2C1_SDA
#define I2C1_SDA 7
#endif
#ifndef I2C_DRIVER
#define I2C_DRIVER I2CD1
#endif