summary refs log tree commit diff
path: root/docs/feature_oled_driver.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-08-15 19:30:34 +1000
committerGitHub <noreply@github.com>2023-08-15 10:30:34 +0100
commit5d2f2af19897d1f5fd35cb8475fc8b3f74f201f1 (patch)
tree4e2a8b21bd41dc036a91562b4f25257d5b8701e0 /docs/feature_oled_driver.md
parent0ac8221a0a423d1a74238fcdf6b489bfe865c2e7 (diff)
OLED: driver naming cleanups (#21710)
Diffstat (limited to 'docs/feature_oled_driver.md')
-rw-r--r--docs/feature_oled_driver.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/feature_oled_driver.md b/docs/feature_oled_driver.md
index a62294b23a..f3769742f8 100644
--- a/docs/feature_oled_driver.md
+++ b/docs/feature_oled_driver.md
@@ -29,17 +29,17 @@ OLED_ENABLE = yes
 
 |OLED Driver        |Supported Device                    |
 |-------------------|------------------------------------|
-|SSD1306 (default)  |For both SSD1306, SH1106, and SH1107|
+|`ssd1306` (default)|For both SSD1306, SH1106, and SH1107|
 
 e.g.
 ```make
-OLED_DRIVER = SSD1306
+OLED_DRIVER = ssd1306
 ```
 
 |OLED Transport |                                                |
 |---------------|------------------------------------------------|
-|i2c (default)  | Uses I2C for communication with the OLED panel |
-|spi            | Uses SPI for communication with the OLED panel |
+|`i2c` (default)| Uses I2C for communication with the OLED panel |
+|`spi`          | Uses SPI for communication with the OLED panel |
 
 e.g.
 ```make