diff options
| author | Ryan | 2024-11-14 19:00:02 +0100 |
|---|---|---|
| committer | GitHub | 2024-11-14 19:00:02 +0100 |
| commit | 46236ce3de8385f27e3f13a9921abee7e1e0fa57 (patch) | |
| tree | 0d5dfc4c40f2b590de0d493324a308d488bda02a /docs/features/ps2_mouse.md | |
| parent | a8a47c40114c72a042516c1f93384f228685eb3e (diff) | |
[docs] Improve halconf/mcuconf code examples (#24597)
Diffstat (limited to 'docs/features/ps2_mouse.md')
| -rw-r--r-- | docs/features/ps2_mouse.md | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/features/ps2_mouse.md b/docs/features/ps2_mouse.md index 90f4cca827..52443c3ce2 100644 --- a/docs/features/ps2_mouse.md +++ b/docs/features/ps2_mouse.md @@ -90,18 +90,22 @@ PS2_ENABLE = yes PS2_DRIVER = interrupt ``` -In your keyboard config.h: +In your keyboard `config.h`: ```c #define PS2_CLOCK_PIN A8 #define PS2_DATA_PIN A9 ``` -And in the chibios specifig halconf.h: +And in the ChibiOS specific `halconf.h`: + ```c -#define PAL_USE_CALLBACKS TRUE -``` +#pragma once +#define PAL_USE_CALLBACKS TRUE // [!code focus] + +#include_next <halconf.h> +``` ### USART Version {#usart-version} |