diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-27 14:23:22 -0700 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | c56b9a1ce97e415b90a0e8d32d84f7799c84bed5 (patch) | |
tree | 71972d19dcc2f69e9eda3fbc7276a70c380e3769 /docs/ChangeLog/20200829 | |
parent | bdd8d2679ba74715b38f958b071fd57eaf092b9d (diff) |
Add ChangeLog for 2020 Aug 29 Breaking Changes
Diffstat (limited to 'docs/ChangeLog/20200829')
-rw-r--r-- | docs/ChangeLog/20200829/PR9023.md | 5 | ||||
-rw-r--r-- | docs/ChangeLog/20200829/PR9318.md | 11 |
2 files changed, 0 insertions, 16 deletions
diff --git a/docs/ChangeLog/20200829/PR9023.md b/docs/ChangeLog/20200829/PR9023.md deleted file mode 100644 index 79ca2cb2f8..0000000000 --- a/docs/ChangeLog/20200829/PR9023.md +++ /dev/null @@ -1,5 +0,0 @@ -# Deprecation of `analogRead()` - -[#9023](https://github.com/qmk/qmk_firmware/pull/9023) - -This function takes Arduino pin numbers (eg. `9` vs. `B5`), which is at odds with the rest of the codebase. The replacement for this function is `analogReadPin()`. diff --git a/docs/ChangeLog/20200829/PR9318.md b/docs/ChangeLog/20200829/PR9318.md deleted file mode 100644 index c238f6e449..0000000000 --- a/docs/ChangeLog/20200829/PR9318.md +++ /dev/null @@ -1,11 +0,0 @@ -### Bigger integer type when looping over combos. - -[#9318](https://github.com/qmk/qmk_firmware/pull/9318) - -Changes `uint8_t` to `uint16_t` so it is possible have more than 256 combos. - -Any fork that uses `process_combo_event` needs to update the function's first argument to `uint16_t`. - -| Old function | New Function | -|---------------------------------------------------------------|----------------------------------------------------------------| -| `void process_combo_event(uint8_t combo_index, bool pressed)` | `void process_combo_event(uint16_t combo_index, bool pressed)` | |