forked from mirrors/qmk_firmware
9874d78da3
* Add mode 60 PCB's * Update Licenses * Unify Vendor name cross other projects * Move pin description from Config to Info.json * Replace WS2812 driver with PWM * Update keyboards/mode/m60h/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/mode/m60h_f/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/mode/m60h/readme.md Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/mode/m60s/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/mode/m60s/readme.md Co-authored-by: Ryan <fauxpark@gmail.com> * Format info.json files * replace link with images * Fix spacings in Config file * remove non essential file * Update readme.md spacings * Update readme.md Spacings * Update readme.md --------- Co-authored-by: Wolf <contact@vwolf.be> Co-authored-by: Ryan <fauxpark@gmail.com>
12 lines
No EOL
328 B
C
12 lines
No EOL
328 B
C
// Copyright 2023 contact@vwolf.be
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_SWIRL
|
|
|
|
#define WS2812_PWM_DRIVER PWMD4
|
|
#define WS2812_PWM_CHANNEL 4
|
|
#define WS2812_DMA_STREAM STM32_DMA1_STREAM6
|
|
#define WS2812_DMA_CHANNEL 2
|
|
#define WS2812_PWM_TARGET_PERIOD 800000 |