diff options
| author | skullY <skullydazed@gmail.com> | 2019-01-26 21:25:59 -0800 |
|---|---|---|
| committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-02-10 15:37:12 -0800 |
| commit | 6b74dd6de5359da18e87b2d4894e3ffc3fc89d47 (patch) | |
| tree | d4b467f032aadac477c4c2fb21d17a6c35dd30a0 /drivers | |
| parent | bf2670601d29551896bab6811b9bb64de2d0ee0e (diff) | |
| download | qmk_firmware-6b74dd6de5359da18e87b2d4894e3ffc3fc89d47.tar.gz qmk_firmware-6b74dd6de5359da18e87b2d4894e3ffc3fc89d47.zip | |
led_matrix works now
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/arm/i2c_master.c | 11 | ||||
| -rw-r--r-- | drivers/arm/i2c_master.h | 10 | ||||
| -rw-r--r-- | drivers/issi/is31fl3731-simple.c | 5 |
3 files changed, 16 insertions, 10 deletions
diff --git a/drivers/arm/i2c_master.c b/drivers/arm/i2c_master.c index 385bd97cb..1c3da2a1a 100644 --- a/drivers/arm/i2c_master.c +++ b/drivers/arm/i2c_master.c | |||
| @@ -46,13 +46,13 @@ __attribute__ ((weak)) | |||
| 46 | void i2c_init(void) | 46 | void i2c_init(void) |
| 47 | { | 47 | { |
| 48 | // Try releasing special pins for a short time | 48 | // Try releasing special pins for a short time |
| 49 | palSetPadMode(GPIOB, 6, PAL_MODE_INPUT); | 49 | palSetPadMode(I2C1_BANK, I2C1_SCL, PAL_MODE_INPUT); |
| 50 | palSetPadMode(GPIOB, 7, PAL_MODE_INPUT); | 50 | palSetPadMode(I2C1_BANK, I2C1_SDA, PAL_MODE_INPUT); |
| 51 | 51 | ||
| 52 | chThdSleepMilliseconds(10); | 52 | chThdSleepMilliseconds(10); |
| 53 | 53 | ||
| 54 | palSetPadMode(GPIOB, 6, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN); | 54 | palSetPadMode(I2C1_BANK, I2C1_SCL, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN); |
| 55 | palSetPadMode(GPIOB, 7, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN); | 55 | palSetPadMode(I2C1_BANK, I2C1_SDA, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN); |
| 56 | 56 | ||
| 57 | //i2cInit(); //This is invoked by halInit() so no need to redo it. | 57 | //i2cInit(); //This is invoked by halInit() so no need to redo it. |
| 58 | } | 58 | } |
| @@ -67,6 +67,7 @@ uint8_t i2c_start(uint8_t address) | |||
| 67 | 67 | ||
| 68 | uint8_t i2c_transmit(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout) | 68 | uint8_t i2c_transmit(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout) |
| 69 | { | 69 | { |
| 70 | // FIXME: Next steps: Add a print here, copy this file to your rgb_matrix firmware. Compare both. | ||
| 70 | i2c_address = address; | 71 | i2c_address = address; |
| 71 | i2cStart(&I2C_DRIVER, &i2cconfig); | 72 | i2cStart(&I2C_DRIVER, &i2cconfig); |
| 72 | return i2cMasterTransmitTimeout(&I2C_DRIVER, (i2c_address >> 1), data, length, 0, 0, MS2ST(timeout)); | 73 | return i2cMasterTransmitTimeout(&I2C_DRIVER, (i2c_address >> 1), data, length, 0, 0, MS2ST(timeout)); |
diff --git a/drivers/arm/i2c_master.h b/drivers/arm/i2c_master.h index 392760328..7a9eb32eb 100644 --- a/drivers/arm/i2c_master.h +++ b/drivers/arm/i2c_master.h | |||
| @@ -26,6 +26,16 @@ | |||
| 26 | #include "ch.h" | 26 | #include "ch.h" |
| 27 | #include <hal.h> | 27 | #include <hal.h> |
| 28 | 28 | ||
| 29 | #ifndef I2C1_BANK | ||
| 30 | #define I2C1_BANK GPIOB | ||
| 31 | #endif | ||
| 32 | #ifndef I2C1_SCL | ||
| 33 | #define I2C1_SCL 6 | ||
| 34 | #endif | ||
| 35 | #ifndef I2C1_SDA | ||
| 36 | #define I2C1_SDA 7 | ||
| 37 | #endif | ||
| 38 | |||
| 29 | #ifndef I2C_DRIVER | 39 | #ifndef I2C_DRIVER |
| 30 | #define I2C_DRIVER I2CD1 | 40 | #define I2C_DRIVER I2CD1 |
| 31 | #endif | 41 | #endif |
diff --git a/drivers/issi/is31fl3731-simple.c b/drivers/issi/is31fl3731-simple.c index 9c31df209..ff6620b72 100644 --- a/drivers/issi/is31fl3731-simple.c +++ b/drivers/issi/is31fl3731-simple.c | |||
| @@ -158,12 +158,7 @@ void IS31FL3731_init(uint8_t addr) { | |||
| 158 | // enable software shutdown | 158 | // enable software shutdown |
| 159 | IS31FL3731_write_register(addr, ISSI_REG_SHUTDOWN, 0x00); | 159 | IS31FL3731_write_register(addr, ISSI_REG_SHUTDOWN, 0x00); |
| 160 | // this delay was copied from other drivers, might not be needed | 160 | // this delay was copied from other drivers, might not be needed |
| 161 | // FIXME: Don't we have a wrapper for this already? | ||
| 162 | #ifdef __AVR__ | ||
| 163 | _delay_ms(10); | ||
| 164 | #else | ||
| 165 | wait_ms(10); | 161 | wait_ms(10); |
| 166 | #endif | ||
| 167 | 162 | ||
| 168 | // picture mode | 163 | // picture mode |
| 169 | IS31FL3731_write_register(addr, ISSI_REG_CONFIG, ISSI_REG_CONFIG_PICTUREMODE); | 164 | IS31FL3731_write_register(addr, ISSI_REG_CONFIG, ISSI_REG_CONFIG_PICTUREMODE); |
