diff options
Diffstat (limited to 'docs/config_options.md')
| -rw-r--r-- | docs/config_options.md | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/config_options.md b/docs/config_options.md index a3262b418..aeaaf47aa 100644 --- a/docs/config_options.md +++ b/docs/config_options.md | |||
| @@ -67,16 +67,22 @@ This is a C header file that is one of the first things included, and will persi | |||
| 67 | * turns on the alternate audio voices (to cycle through) | 67 | * turns on the alternate audio voices (to cycle through) |
| 68 | * `#define C4_AUDIO` | 68 | * `#define C4_AUDIO` |
| 69 | * enables audio on pin C4 | 69 | * enables audio on pin C4 |
| 70 | * Deprecated. Use `#define AUDIO_PIN C4` | ||
| 70 | * `#define C5_AUDIO` | 71 | * `#define C5_AUDIO` |
| 71 | * enables audio on pin C5 | 72 | * enables audio on pin C5 |
| 73 | * Deprecated. Use `#define AUDIO_PIN C5` | ||
| 72 | * `#define C6_AUDIO` | 74 | * `#define C6_AUDIO` |
| 73 | * enables audio on pin C6 | 75 | * enables audio on pin C6 |
| 76 | * Deprecated. Use `#define AUDIO_PIN C6` | ||
| 74 | * `#define B5_AUDIO` | 77 | * `#define B5_AUDIO` |
| 75 | * enables audio on pin B5 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO) | 78 | * enables audio on pin B5 (duophony is enabled if one of B pins is enabled along with one of C pins) |
| 79 | * Deprecated. Use `#define AUDIO_PIN B5`, or use `#define AUDIO_PIN_ALT B5` if a `C` pin is enabled with `AUDIO_PIN` | ||
| 76 | * `#define B6_AUDIO` | 80 | * `#define B6_AUDIO` |
| 77 | * enables audio on pin B6 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO) | 81 | * enables audio on pin B5 (duophony is enabled if one of B pins is enabled along with one of C pins) |
| 82 | * Deprecated. Use `#define AUDIO_PIN B6`, or use `#define AUDIO_PIN_ALT B6` if a `C` pin is enabled with `AUDIO_PIN` | ||
| 78 | * `#define B7_AUDIO` | 83 | * `#define B7_AUDIO` |
| 79 | * enables audio on pin B7 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO) | 84 | * enables audio on pin B5 (duophony is enabled if one of B pins is enabled along with one of C pins) |
| 85 | * Deprecated. Use `#define AUDIO_PIN B7`, or use `#define AUDIO_PIN_ALT B7` if a `C` pin is enabled with `AUDIO_PIN` | ||
| 80 | * `#define BACKLIGHT_PIN B7` | 86 | * `#define BACKLIGHT_PIN B7` |
| 81 | * pin of the backlight | 87 | * pin of the backlight |
| 82 | * `#define BACKLIGHT_LEVELS 3` | 88 | * `#define BACKLIGHT_LEVELS 3` |
| @@ -97,6 +103,8 @@ This is a C header file that is one of the first things included, and will persi | |||
| 97 | * sets the maximum power (in mA) over USB for the device (default: 500) | 103 | * sets the maximum power (in mA) over USB for the device (default: 500) |
| 98 | * `#define USB_POLLING_INTERVAL_MS 10` | 104 | * `#define USB_POLLING_INTERVAL_MS 10` |
| 99 | * sets the USB polling rate in milliseconds for the keyboard, mouse, and shared (NKRO/media keys) interfaces | 105 | * sets the USB polling rate in milliseconds for the keyboard, mouse, and shared (NKRO/media keys) interfaces |
| 106 | * `#define USB_SUSPEND_WAKEUP_DELAY 200` | ||
| 107 | * set the number of milliseconde to pause after sending a wakeup packet | ||
| 100 | * `#define F_SCL 100000L` | 108 | * `#define F_SCL 100000L` |
| 101 | * sets the I2C clock rate speed for keyboards using I2C. The default is `400000L`, except for keyboards using `split_common`, where the default is `100000L`. | 109 | * sets the I2C clock rate speed for keyboards using I2C. The default is `400000L`, except for keyboards using `split_common`, where the default is `100000L`. |
| 102 | 110 | ||
