// Emisar D4K 3-channel hwdef // Copyright (C) 2023 Selene ToyKeeper // SPDX-License-Identifier: GPL-3.0-or-later #pragma once /* * Pin / Name / Function * 1 PA6 LED 4 PWM (linear) (PWM1B) * 2 PA5 R: red aux LED (PWM0B) * 3 PA4 G: green aux LED * 4 PA3 B: blue aux LED * 5 PA2 button LED * 6 PA1 3rd LED opamp enable * 7 PA0 4th LED opamp enable * 8 GND GND * 9 VCC VCC * 10 PC5 (none) * 11 PC4 (none) * 12 PC3 RESET * 13 PC2 (none) * 14 PC1 SCK * 15 PC0 main 2 LEDs PWM (linear) (PWM0A) (8-bit only) * 16 PB3 3rd LED PWM (linear) (PWM1A) * 17 PB2 MISO * 18 PB1 MOSI / battery voltage (ADC6) * 19 PB0 main 2 LEDs opamp enable * 20 PA7 e-switch (PCINT7) * ADC12 thermal sensor * * PWM speed + resolution is dynamic on 2 channels, * and 8-bit 16 kHz on 1 channel. * * Note: Some hardware might swap the wires at build time! * It might be wired 8/16/16 (8-bit LEDs 1+2) or 16/16/8 (8-bit LED 4). * So this code should support both wire layouts. */ #define ATTINY 1634 #include #define HWDEF_C_FILE hwdef-emisar-d4k-3ch.c // allow using aux LEDs as extra channel modes #include "chan-rgbaux.h" // channel modes: // - 1. main 2 LEDs only (8/16/16 wiring) or LED 4 only (16/16/8) // - 2. 3rd LED only // - 3. 4th LED only (8/16/16 wiring) or main 2 LEDs only (16/16/8) // - 4. all 3 channels (equal amounts) // - 5. 2ch blend (3rd + 4th LEDs, 8/16/16 wiring) // - 6. 2ch blend (3rd + 4th LEDs, 16/16/8 wiring) // - 7. 3ch blend (HSV style) // - 8. 3ch auto blend (red-warm-cool style, led4-led3-main2) // - 9+. RGB aux (hidden) #define NUM_CHANNEL_MODES (8 + NUM_RGB_AUX_CHANNEL_MODES) enum channel_modes_e { CM_MAIN2 = 0, CM_LED3, CM_LED4, CM_ALL, CM_BLEND34A, // 8 / [16+16] CM_BLEND34B, // 16 / [16+8] CM_HSV, CM_AUTO3, RGB_AUX_ENUMS }; #define CHANNEL_MODES_ENABLED 0b0000000000001111 #define USE_CHANNEL_MODE_ARGS // _, _, _, _, 128=middle CCT, 128=middle CCT, 213=purple, _ #define CHANNEL_MODE_ARGS 0,0,0,0,128,128,213,0,RGB_AUX_CM_ARGS #define USE_CUSTOM_CHANNEL_3H_MODES #define USE_CIRCULAR_TINT_3H // can use some of the common handlers #define USE_CALC_2CH_BLEND #define USE_HSV2RGB #define PWM_CHANNELS 1 // old, remove this #define PWM_BITS 16 // 0 to 16383 at variable Hz, not 0 to 255 at 16 kHz #define PWM_GET PWM_GET16 #define PWM_DATATYPE uint16_t #define PWM_DATATYPE2 uint32_t // only needs 32-bit if ramp values go over 255 #define PWM1_DATATYPE uint16_t // 15-bit PWM+DSM ramp // dynamic PWM #define PWM_TOP ICR1 // holds the TOP value for for variable-resolution PWM #define PWM_TOP_INIT 255 // highest value used in top half of ramp #define PWM_CNT TCNT1 // for checking / resetting phase #define PWM_CNT2 TCNT0 // for checking / resetting phase // (max is (255 << 7), because it's 8-bit PWM plus 7 bits of DSM) #define DSM_TOP (255<<7) // 15-bit resolution leaves 1 bit for carry // timer interrupt for DSM #define DSM_vect TIMER0_OVF_vect #define DSM_INTCTRL TIMSK #define DSM_OVF_bm (1<