The [rmk] section defines configuration parameters used inside RMK. These parameters affect the firmware's behavior, memory usage, and performance. If you don't need to change these parameters, you can ignore this section.
mouse_key_interval: Mouse key interval in milliseconds, default value is 20. This parameter controls the mouse movement speed; lower values result in faster movement.mouse_wheel_interval: Mouse wheel interval in milliseconds, default value is 80. This parameter controls the scrolling speed; lower values result in faster scrolling.Increasing the number of combos, forks, morses (tap dances), and macros will increase memory usage.
combo_max_num: Maximum number of combos that the keyboard can store, default value is 8. This value must be between 0 and 256.combo_max_length: Maximum number of keys that can be pressed simultaneously in a combo, default value is 4.fork_max_num: Maximum number of forks for conditional key actions, default value is 8. This value must be between 0 and 256.morse_max_num: Maximum number of morses that can be stored, default value is 8. This value must be between 0 and 256.max_patterns_per_key : Maximum number of tap/hold patterns a morse key can handle, default value is 8. This value must be between 4 and 65536. (Will be automatically set to the maximum length of tap_actions + hold_actions or morse_actions.)macro_space_size: Space size in bytes for storing macro sequences, default value is 256.debounce_time: Default key debounce time in milliseconds, default value is 20.In RMK there are several channels used for communication between tasks. The length of the channel can be adjusted. Larger channel size means more events can be buffered, but it will increase memory usage.
event_channel_size: The length of event channel, default value is 16. Used for buffering keyboard matrix events.controller_channel_size: The length of controller event channel, default value is 16. Used for communication between controller and other tasks.controller_channel_pubs: Number of publishers that can send messages to controllers, default value is 12. This controls how many concurrent senders can publish to the controller channel.controller_channel_subs: Number of controllers (subscribers) that can receive messages, default value is 8. This controls how many concurrent receivers can subscribe to the controller channel.report_channel_size: The length of report channel, default value is 16. Used for buffering HID reports to be sent to the host.vial_channel_size: The length of vial channel, default value is 4. Used for communication with Vial protocol.flash_channel_size: The length of flash channel, default value is 4. Used for buffering flash storage operations.split_peripherals_num: The number of split peripherals, default value is 1. If multiple peripherals are specified in the toml, this field will be automatically set to the actual peripherals number.ble_profiles_num: The number of available Bluetooth profiles, default value is 3. This parameter defines how many Bluetooth paired devices the keyboard can store.split_central_sleep_timeout_seconds: Sleep timeout for BLE split central in seconds, default value is 0 (disabled). When set to a non-zero value, the split central will enter sleep mode after this many seconds of inactivity to save power. Set to 0 to disable automatic sleep.