summaryrefslogtreecommitdiffstats
path: root/docs/ChangeLog/20200829
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ChangeLog/20200829')
-rw-r--r--docs/ChangeLog/20200829/PR9023.md5
-rw-r--r--docs/ChangeLog/20200829/PR9318.md11
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)` |