~ruther/qmk_firmware

18690dda — skullY 6 years ago
filter python from the list of things that trigger default builds
1013ae2d — skullY 6 years ago
Add python tests to the travis check
deb6fa6a — skullY 6 years ago
Add a command to format python code
533d6d6a — skullY 6 years ago
Make the modem manager check more pythonic
c7eede22 — skullY 6 years ago
run yapf on the code
5b7a5b2a — skullY 6 years ago
Setup a python test framework
4d339b7b — Konstantin Đorđević 6 years ago
Update docker_build.sh: indentation fix, error echo function (#6659)

* Replace spaces with tab in docker_build.sh

* Use errcho instead of echo >&2
736bdc7e — jotix 6 years ago
Jotix (#6687)

* jotix ortho_4x12

* add shifted symbols

* jotix ortho_4x12 layot
fc5fb2fc — MechMerlin 6 years ago
CA66 R1/R2 Cleanup (#6678)

* fixup readme to adhere to QMK standards and to also have more information

* use pragma once

* strip out the custom bootmagic lite routine as it is the same as QMK's default bootmagic lite routine. Also add the caps lock led indicator

* turn on bootmagic lite

* update default keymap

* Update keyboards/playkbtw/ca66/ca66.c

Co-Authored-By: fauxpark <fauxpark@gmail.com>

* remove lines 4 thru 37 and add bootloader
ac8f8a89 — Silvio Gulizia 6 years ago
fix missing music mode legend (#6686)

7ffed073 — fauxpark 6 years ago
Make USB polling rate configurable with a define (#6668)

f8bf1d1b — Mikkel Jeppesen 6 years ago
Changed to 1209 PID (#6677)

f0ad3fc6 — Danny 6 years ago
[Keyboard] Add Iris Rev 4 (#6660)

* Add Iris Rev. 4

* Fix EEPROM addresses
98599173 — fauxpark 6 years ago
Add 16U2, 16U4 and USB646 to mcu_selection.mk (#6566)

12812fa6 — Xelus22 6 years ago
led fix (#6672)

6d191635 — Konstantin Đorđević 6 years ago
Add personal Doro67 multi keymap, fix bug in KBD6X keymap (#6674)

* Add missing void parameter declarations to *_light functions

* Add doro67/multi:konstantin keymap

* Allow FNLK to be canceled with Esc

* Function layer → Fn layer in keymap comments
df5b2d20 — fauxpark 6 years ago
[Keyboard] Missed a JTAG disable (#6667)

7372ce6a — Vega Deftwing 6 years ago
added ability to change unicode input method (#6666)

fa71c4c9 — bwhelm 6 years ago
Fix battery level code in adafruit_ble.cpp (#6648)

* Fix battery level code in adafruit_ble.cpp

The code in tsk_core/protocol/lufa/adafluit_ble.cpp that polls the
battery level for the Adafruit feather BLE controller reads the
regulated voltage, not the raw voltage coming from the battery. To do
that, the Adafruit Feather docs say you should read from pin A9:
https://learn.adafruit.com/adafruit-feather-32u4-basic-proto/power-management#measuring-battery-4-9.
(See also
https://learn.adafruit.com/adafruit-feather-32u4-bluefruit-le/pinouts#logic-pins-2-9.)

I'm not sure why, but analogRead(9); doesn't read the correct pin.
Checking all available analog pins experimentally, it turns out that
analogRead(7); returns the correct value. So the code above should read:

    state.vbat = analogRead(7);

* Update tmk_core/protocol/lufa/adafruit_ble.cpp

Co-Authored-By: Drashna Jaelre <drashna@live.com>

* Remove old comment

* Fix linking error

* Remove `#ifdef` around `#include analog.h`.

* Really fix linking error
e6a6b1f1 — Elliot Powell 6 years ago
[Docs] Update i2c_driver.md (#6665)

Fix missing arg of i2c_start
Next