mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-14 12:34:39 +00:00
[Keyboard] Fix compilation issues for yanghu Unicorne (#15068)
This commit is contained in:
parent
f10753614d
commit
69ef8d630c
1 changed files with 9 additions and 7 deletions
|
@ -14,7 +14,7 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include "unicorne.h"
|
#include "unicorne.h"
|
||||||
|
#include "i2c_master.h"
|
||||||
|
|
||||||
// Custom i2c init to enable internal pull up resistor for i2c.
|
// Custom i2c init to enable internal pull up resistor for i2c.
|
||||||
void i2c_init(void) {
|
void i2c_init(void) {
|
||||||
|
@ -23,13 +23,13 @@ void i2c_init(void) {
|
||||||
is_initialised = true;
|
is_initialised = true;
|
||||||
|
|
||||||
// Try releasing special pins for a short time
|
// Try releasing special pins for a short time
|
||||||
palSetPadMode(I2C1_SCL_BANK, I2C1_SCL, PAL_MODE_INPUT);
|
palSetLineMode(I2C1_SCL_PIN, PAL_MODE_INPUT);
|
||||||
palSetPadMode(I2C1_SDA_BANK, I2C1_SDA, PAL_MODE_INPUT);
|
palSetLineMode(I2C1_SDA_PIN, PAL_MODE_INPUT);
|
||||||
|
|
||||||
chThdSleepMilliseconds(10);
|
chThdSleepMilliseconds(10);
|
||||||
// Use internal pull up since we do not have pull up on i2c pins in v1 design.
|
// Use internal pull up since we do not have pull up on i2c pins in v1 design.
|
||||||
palSetPadMode(I2C1_SCL_BANK, I2C1_SCL, PAL_MODE_ALTERNATE(I2C1_SCL_PAL_MODE) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP);
|
palSetLineMode(I2C1_SCL_PIN, PAL_MODE_ALTERNATE(I2C1_SCL_PAL_MODE) | PAL_OUTPUT_TYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP);
|
||||||
palSetPadMode(I2C1_SDA_BANK, I2C1_SDA, PAL_MODE_ALTERNATE(I2C1_SDA_PAL_MODE) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP);
|
palSetLineMode(I2C1_SDA_PIN, PAL_MODE_ALTERNATE(I2C1_SDA_PAL_MODE) | PAL_OUTPUT_TYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,11 +138,13 @@ void set_keylog(uint16_t keycode, keyrecord_t *record) {
|
||||||
__attribute__((weak)) void oled_render_keylog(void) { oled_write(keylog_str, false); }
|
__attribute__((weak)) void oled_render_keylog(void) { oled_write(keylog_str, false); }
|
||||||
|
|
||||||
// Keymaps can override this function
|
// Keymaps can override this function
|
||||||
__attribute__((weak)) void oled_task_user(void) {
|
__attribute__((weak)) bool oled_task_kb(void) {
|
||||||
|
if (!oled_task_user()) { return false; }
|
||||||
/* oled_render_keylog(); */
|
/* oled_render_keylog(); */
|
||||||
oled_render_layer();
|
oled_render_layer();
|
||||||
oled_render_mods();
|
oled_render_mods();
|
||||||
led_t led_state = host_keyboard_led_state();
|
led_t led_state = host_keyboard_led_state();
|
||||||
oled_render_capslock(led_state.caps_lock);
|
oled_render_capslock(led_state.caps_lock);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue