diff options
| author | Nick Brassel | 2023-08-29 13:24:43 +0200 |
|---|---|---|
| committer | Nick Brassel | 2023-08-29 13:24:43 +0200 |
| commit | 31a91add168c956655ace8ec4cf9750db1e2cfc6 (patch) | |
| tree | 12cea9b5f8e769f9611a31cbaede9537edad71cc /docs/feature_oled_driver.md | |
| parent | f07490bc092e365ba03dc685b3fc30ad0bf0b752 (diff) | |
| parent | edaf8a87ef3164f8986b0a8eb171d4879b45414c (diff) | |
Merge branch 'develop'
Diffstat (limited to 'docs/feature_oled_driver.md')
| -rw-r--r-- | docs/feature_oled_driver.md | 8 |
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 |