<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qmk/docs/ref_functions.md, branch master</title>
<subtitle>Custom split ortholinear mechanical keyboard with rollerball mouse. Firmware. https://blog.node5.net/custom-keyboard
</subtitle>
<id>http://git.node5.net/firmware/qmk/atom?h=master</id>
<link rel='self' href='http://git.node5.net/firmware/qmk/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/'/>
<updated>2022-10-20T11:20:07+00:00</updated>
<entry>
<title>Remove legacy EEPROM clear keycodes (#18782)</title>
<updated>2022-10-20T11:20:07+00:00</updated>
<author>
<name>Ryan</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2022-10-20T11:20:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=c347e732be6b50500c1651b3fb8c0753b0c9c40d'/>
<id>urn:sha1:c347e732be6b50500c1651b3fb8c0753b0c9c40d</id>
<content type='text'>
* `EEP_RST` -&gt; `EE_CLR`, default-ish keymaps

* `EEP_RST` -&gt; `EE_CLR`, user keymaps

* `EEP_RST` -&gt; `EE_CLR`, community layouts

* `EEP_RST` -&gt; `EE_CLR`, userspace

* `EEP_RST` -&gt; `EE_CLR`, docs &amp; core</content>
</entry>
<entry>
<title>Update ref_functions.md (replaced deprecated `RESET`) (#17436)</title>
<updated>2022-06-23T01:26:08+00:00</updated>
<author>
<name>David Kosorin</name>
<email>david@kosorin.net</email>
</author>
<published>2022-06-23T01:26:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=71472a169240868bcf76d4d6c242519782b5cc5b'/>
<id>urn:sha1:71472a169240868bcf76d4d6c242519782b5cc5b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix typo in docs/ref_functions.md (#16690)</title>
<updated>2022-03-19T16:37:35+00:00</updated>
<author>
<name>leviport</name>
<email>levi@system76.com</email>
</author>
<published>2022-03-19T16:37:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=3502bbbd16feff23ac020ed561ebfef95cc271e8'/>
<id>urn:sha1:3502bbbd16feff23ac020ed561ebfef95cc271e8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix typo (#15569)</title>
<updated>2021-12-24T20:10:12+00:00</updated>
<author>
<name>Ian C</name>
<email>ian.canino@gmail.com</email>
</author>
<published>2021-12-24T20:10:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=435fa2c391348f604f122dadba4f2af9306d085c'/>
<id>urn:sha1:435fa2c391348f604f122dadba4f2af9306d085c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove Full Bootmagic (#13846)</title>
<updated>2021-08-07T06:59:56+00:00</updated>
<author>
<name>James Young</name>
<email>18669334+noroadsleft@users.noreply.github.com</email>
</author>
<published>2021-08-07T06:59:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=a03aa301def77c867ae6c6c840f7fc82b26d91d6'/>
<id>urn:sha1:a03aa301def77c867ae6c6c840f7fc82b26d91d6</id>
<content type='text'>
* disambiguate Bootmagic rules in keymaps

The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.

This commit edits the files to specify that full Bootmagic is intended.

* remove BOOTMAGIC_ENABLE=full setting

* unify commented BOOTMAGIC_ENABLE rules in keyboards

Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no       # Virtual DIP switch configuration;g' {} +
```

* remove commented Bootmagic rules from keymap/user level

Command:

```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```

* update keyboard BOOTMAGIC_ENABLE rule formatting

Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```

* update keyboards' BOOTMAGIC_ENABLE settings

Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```

* update keymap/user BOOTMAGIC_ENABLE settings

Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```

* remove and replace inline comments in keyboards and keymap/user files

Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1     # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1      # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1       # Enable Bootmagic Lite;g' '{}' +
```

* rename improperly named makefiles

Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.

This commit corrects the filenames of the affected files.

* update renamed file with new rule formatting

* update QMK's template files

Updates QMK's `rules.mk` templates to use the new inline comment.

* update QMK Docs

- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes

* rules.mk patch for coarse/ixora and coarse/vinta</content>
</entry>
<entry>
<title>[Docs] Add EEP_RST keycode to "Wiping the EEPROM" section (#11830)</title>
<updated>2021-02-12T23:56:36+00:00</updated>
<author>
<name>Carlos</name>
<email>filoxo@users.noreply.github.com</email>
</author>
<published>2021-02-12T23:56:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=bf1c40d6820b5cfeee0e77483dae2931a9ee2ae1'/>
<id>urn:sha1:bf1c40d6820b5cfeee0e77483dae2931a9ee2ae1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[Docs] Clarify functionality of update_tri_layer_state (#10370)</title>
<updated>2020-09-21T18:35:26+00:00</updated>
<author>
<name>Dustin Bosveld</name>
<email>mrlinuxfish@users.noreply.github.com</email>
</author>
<published>2020-09-21T18:35:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=2f637e4ea124e8235e336c009d0671bed88aca4c'/>
<id>urn:sha1:2f637e4ea124e8235e336c009d0671bed88aca4c</id>
<content type='text'>
* Add information to docs
- If layer z is not a higher layer than both x and y, the layer change code
does not function correctly.

* Update docs/ref_functions.md

* Update docs/ref_functions.md

* Update docs/ref_functions.md
</content>
</entry>
<entry>
<title>Remove unnecessary break after return from documentation (#9892)</title>
<updated>2020-07-31T14:58:55+00:00</updated>
<author>
<name>Rustam Zagirov</name>
<email>rustam@zagirov.name</email>
</author>
<published>2020-07-31T14:58:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=5bd239e1c0db98a51ed04b86fa5b1abf2b276bfb'/>
<id>urn:sha1:5bd239e1c0db98a51ed04b86fa5b1abf2b276bfb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix a couple of typos that were causing confusion (#8767)</title>
<updated>2020-04-12T06:22:59+00:00</updated>
<author>
<name>Joshua Moses Diamond</name>
<email>josh@windowoffire.com</email>
</author>
<published>2020-04-12T06:22:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=750179e111dfa35d8023fe9ef785dcbef24f1e55'/>
<id>urn:sha1:750179e111dfa35d8023fe9ef785dcbef24f1e55</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add explicit id tags to externally linked headers</title>
<updated>2020-03-06T00:00:10+00:00</updated>
<author>
<name>skullY</name>
<email>skullydazed@gmail.com</email>
</author>
<published>2020-02-28T04:53:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.node5.net/firmware/qmk/commit/?id=54c58ea6de61a0f1fefa06e8271e2e11f9027940'/>
<id>urn:sha1:54c58ea6de61a0f1fefa06e8271e2e11f9027940</id>
<content type='text'>
</content>
</entry>
</feed>
