<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qmk_firmware.git/keyboards/lets_split/rev1, branch master</title>
<subtitle>forked from https://github.com/qmk/qmk_firmware</subtitle>
<id>https://git.tsegers.com/qmk_firmware.git/atom?h=master</id>
<link rel='self' href='https://git.tsegers.com/qmk_firmware.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/'/>
<updated>2020-01-19T03:11:57Z</updated>
<entry>
<title>Enforce definition of `DIODE_DIRECTION` for non-custom matrix boards (#7915)</title>
<updated>2020-01-19T03:11:57Z</updated>
<author>
<name>fauxpark</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2020-01-19T03:11:57Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=eb5d267e637db4c2c639932b8c8176bf47dff78f'/>
<id>urn:sha1:eb5d267e637db4c2c639932b8c8176bf47dff78f</id>
<content type='text'>
* Enforce definition of `DIODE_DIRECTION` for non-custom matrix boards

* Define diode direction for failing boards

* Matching parentheses

* Put onekey diode directions in top level config
</content>
</entry>
<entry>
<title>Cleanup rules.mk for 32U4 keyboards, L-M (#7120)</title>
<updated>2019-10-24T20:50:13Z</updated>
<author>
<name>fauxpark</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2019-10-24T20:50:13Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=e96cac0814995e2a0735708727cbab599d6cf5f1'/>
<id>urn:sha1:e96cac0814995e2a0735708727cbab599d6cf5f1</id>
<content type='text'>
* Cleanup rules.mk for 32U4 keyboards, L-M

* Move some stuff to keyboard level
</content>
</entry>
<entry>
<title>Remove old promicro_bootloader_jmp() declarations (#6444)</title>
<updated>2019-08-21T01:05:08Z</updated>
<author>
<name>fauxpark</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2019-08-21T01:05:08Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=9bb4e63a1123861515c1196a624b4a0f04129601'/>
<id>urn:sha1:9bb4e63a1123861515c1196a624b4a0f04129601</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE (#5997)</title>
<updated>2019-06-06T19:09:56Z</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2019-06-06T19:09:56Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=faaaa134fd436be400aa2c7841b38907899d49a6'/>
<id>urn:sha1:faaaa134fd436be400aa2c7841b38907899d49a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Adds a default value for IS_COMMAND for COMMAND feature (#4301)</title>
<updated>2019-01-26T23:49:45Z</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2019-01-26T23:49:45Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=b05c0e46c6c62972b68518635104fb58927d1a13'/>
<id>urn:sha1:b05c0e46c6c62972b68518635104fb58927d1a13</id>
<content type='text'>
* Add default value for IS_COMMAND for COMMAND feature

* Cleanup and consistency

* Update Templates to reflect change

* Fix IS_COMMAND in template

* Fix IS_COMMAND define

* Use consistent IS_COMMAND block in templates

* Remove unnecessary `#undef IS_COMMAND` directives

* Fix compile issue on orthodox

* Reomve IS_COMMAND option for newer boards

* Remove all existing definitions of IS_COMMAND if they use default LSHIFT and RSHIFT setting

* Remove a couple of additional IS_COMMAND defines

* Remove remaining redundant IS_COMMAND definitions

* Remove #undef IS_COMMAND from orthodox:drashna and whitefox:konstantin

* Remove multiple empty lines in modified config.h files

* Update additional boards

* Reomve IS_COMMAND from newer boards

* Update Alice keyboard

* Remove IS_COMMAND from additional boards

Jan 24th edition
</content>
</entry>
<entry>
<title>Refactor quantum/split_common/i2c.c, quantum/split_common/serial.c (#4522)</title>
<updated>2018-12-15T05:31:56Z</updated>
<author>
<name>Takeshi ISHII</name>
<email>2170248+mtei@users.noreply.github.com</email>
</author>
<published>2018-12-15T05:31:56Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=8f790948e5f7ed62b2c56e1a6aa63dae89d5c860'/>
<id>urn:sha1:8f790948e5f7ed62b2c56e1a6aa63dae89d5c860</id>
<content type='text'>
* add temporary compile test shell script

* Extended support of SKIP_VERSION to make invariant compile results during testing.

* build_keyboard.mk, tmk_core/rules.mk: add LIB_SRC, QUANTUM_LIB_SRC support

Support compiled object enclosed in library.

e.g.
```
LIB_SRC += xxxx.c
xxxx.c --&gt; xxxx.o ---&gt; xxxx.a
```

* remove 'ifdef/ifndef USE_I2C' from quantum/split_common/{i2c|serial}.c

* add SKIP_DEBUG_INFO into tmk_core/rules.mk

When SKIP_DEBUG_INFO=yes is specified, do not use the -g option at compile time.

* tmk_core/rules.mk: Library object need -fno-lto

* add SKIP_DEBUG_INFO=yes

* remove temporary compile test shell script

* add '#define SOFT_SERIAL_PIN D0' to keyboards/lets_split/rev?/config.h

* quantum/split_common/serial.c: Changed not to use USE_I2C.
</content>
</entry>
<entry>
<title>Keyboard: Refactor lets split to use split common code (#4536)</title>
<updated>2018-12-05T17:51:35Z</updated>
<author>
<name>zvecr</name>
<email>git@zvecr.com</email>
</author>
<published>2018-12-05T17:51:35Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=b3d6426aa95a895585b41b9cd6c0c5bec39f0e92'/>
<id>urn:sha1:b3d6426aa95a895585b41b9cd6c0c5bec39f0e92</id>
<content type='text'>
* Refactor lets split to use split common code

* Refactor lets split to use split common code

* Build fixes for OLED_sample keymap

* Build fixes for OLED_sample keymap - attempt to reduce firmware size
</content>
</entry>
<entry>
<title>Remove all of the deprecated RGB defines</title>
<updated>2018-10-22T18:55:57Z</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2018-10-22T17:26:19Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=7e99d869deb57251dc15620beff34d5fd53066e4'/>
<id>urn:sha1:7e99d869deb57251dc15620beff34d5fd53066e4</id>
<content type='text'>
Fixes #3641
</content>
</entry>
<entry>
<title>More Configurator Warning Fixes (#2716)</title>
<updated>2018-04-08T06:32:14Z</updated>
<author>
<name>MechMerlin</name>
<email>30334081+mechmerlin@users.noreply.github.com</email>
</author>
<published>2018-04-08T06:32:14Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=1f778684276e90609c183045a72c96c3c12d452c'/>
<id>urn:sha1:1f778684276e90609c183045a72c96c3c12d452c</id>
<content type='text'>
* mf68_ble did not have the correct .c and .h files

* Fix JC65 KEYMAP to LAYOUT

* Change KEYMAP to LAYOUT for s60_x

* Convert KEYMAP to LAYOUT for lets_split boards

* Convert KEYMAP to LAYOUT

* more fixes to keymap for iris

* convert KEYMAP to LAYOUT for levinson keyboard

* change losinggeneration's KEYMAP to LAYOUT

* convert KEYMAP to LAYOUT

* convert KEYMAP to LAYOUT for nyquist

* convert KEYMAP to LAYOUT

* convert KEYMAP to LAYOUT for viterbi

* convert KEYMAP to LAYOUT

* convert KEYMAP and its subsidiries to the LAYOUT standard

* convert KEYMAP and its subsidiries to the new LAYOUT standard
</content>
</entry>
<entry>
<title>Fix Audio chime overrides in split keyboards</title>
<updated>2017-12-04T23:16:26Z</updated>
<author>
<name>Drashna Jael're</name>
<email>drashna@live.com</email>
</author>
<published>2017-12-03T18:19:57Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/qmk_firmware.git/commit/?id=95e68c4ae8d5e1858523e98bb9f90e645608a34e'/>
<id>urn:sha1:95e68c4ae8d5e1858523e98bb9f90e645608a34e</id>
<content type='text'>
</content>
</entry>
</feed>
