1
// BLF Q8 driver layout using the Attiny1616
2
// Copyright (C) 2021-2023 gchart, Selene ToyKeeper
3
// SPDX-License-Identifier: GPL-3.0-or-later
7
* (based on Wurkkos TS10 driver layout,
8
* which in turn was based on an older version of this BLF-Q8-t1616 driver)
9
* (should probably merge the two files at some point)
13
* PWM FET: PB0 (TCA0 WO0)
14
* PWM 1x7135: PB1 (TCA0 WO1)
21
// nearly all t1616-based FET+1 drivers work pretty much the same
22
// (this one has single-color aux like the TS10)
23
#define HWDEF_C_FILE hwdef-wurkkos-ts10.c
25
// allow using aux LEDs as extra channel modes
29
// * 0. FET+7135 stacked
31
#define NUM_CHANNEL_MODES 2
37
#define DEFAULT_CHANNEL_MODE CM_MAIN
39
// right-most bit first, modes are in fedcba9876543210 order
40
#define CHANNEL_MODES_ENABLED 0b00000001
43
#define PWM_CHANNELS 2 // old, remove this
45
#define PWM_BITS 16 // dynamic 16-bit, but never goes over 255
46
#define PWM_GET PWM_GET8
47
#define PWM_DATATYPE uint16_t // is used for PWM_TOPS (which goes way over 255)
48
#define PWM_DATATYPE2 uint16_t // only needs 32-bit if ramp values go over 255
49
#define PWM1_DATATYPE uint8_t // 1x7135 ramp
50
#define PWM2_DATATYPE uint8_t // DD FET ramp
52
// PWM parameters of both channels are tied together because they share a counter
53
#define PWM_TOP TCA0.SINGLE.PERBUF // holds the TOP value for for variable-resolution PWM
54
#define PWM_TOP_INIT 255 // highest value used in top half of ramp
55
// not necessary when double-buffered "BUF" registers are used
56
#define PWM_CNT TCA0.SINGLE.CNT // for resetting phase after each TOP adjustment
60
#define CH1_PWM TCA0.SINGLE.CMP1BUF // CMP1 is the output compare register for PB1
64
#define CH2_PWM TCA0.SINGLE.CMP0BUF // CMP0 is the output compare register for PB0
67
#define SWITCH_PIN PIN5_bp
68
#define SWITCH_PORT VPORTA.IN
69
#define SWITCH_ISC_REG PORTA.PIN2CTRL
70
#define SWITCH_VECT PORTA_PORT_vect
71
#define SWITCH_INTFLG VPORTA.INTFLAGS
73
// average drop across diode on this hardware
74
#ifndef VOLTAGE_FUDGE_FACTOR
75
#define VOLTAGE_FUDGE_FACTOR 7 // add 0.35V
79
#define AUXLED_PIN PIN5_bp
80
#define AUXLED_PORT PORTB
83
inline void hwdef_setup() {
85
// set up the system clock to run at 10 MHz instead of the default 3.33 MHz
86
_PROTECTED_WRITE( CLKCTRL.MCLKCTRLB,
87
CLKCTRL_PDIV_2X_gc | CLKCTRL_PEN_bm );
91
VPORTB.DIR = PIN0_bm // DD FET
96
// enable pullups on the unused pins to reduce power
97
PORTA.PIN0CTRL = PORT_PULLUPEN_bm;
98
PORTA.PIN1CTRL = PORT_PULLUPEN_bm;
99
PORTA.PIN2CTRL = PORT_PULLUPEN_bm;
100
PORTA.PIN3CTRL = PORT_PULLUPEN_bm;
101
PORTA.PIN4CTRL = PORT_PULLUPEN_bm;
102
PORTA.PIN5CTRL = PORT_PULLUPEN_bm | PORT_ISC_BOTHEDGES_gc; // eSwitch
103
PORTA.PIN6CTRL = PORT_PULLUPEN_bm;
104
PORTA.PIN7CTRL = PORT_PULLUPEN_bm;
106
//PORTB.PIN0CTRL = PORT_PULLUPEN_bm; // FET channel
107
//PORTB.PIN1CTRL = PORT_PULLUPEN_bm; // 7135 channel
108
PORTB.PIN2CTRL = PORT_PULLUPEN_bm;
109
PORTB.PIN3CTRL = PORT_PULLUPEN_bm;
110
PORTB.PIN4CTRL = PORT_PULLUPEN_bm;
111
//PORTB.PIN5CTRL = PORT_PULLUPEN_bm; // Aux LED
113
PORTC.PIN0CTRL = PORT_PULLUPEN_bm;
114
PORTC.PIN1CTRL = PORT_PULLUPEN_bm;
115
PORTC.PIN2CTRL = PORT_PULLUPEN_bm;
116
PORTC.PIN3CTRL = PORT_PULLUPEN_bm;
119
// https://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny1614-16-17-DataSheet-DS40002204A.pdf
120
// PB0 is TCA0:WO0, use TCA_SINGLE_CMP0EN_bm
121
// PB1 is TCA0:WO1, use TCA_SINGLE_CMP1EN_bm
122
// PB2 is TCA0:WO2, use TCA_SINGLE_CMP2EN_bm
123
// For Fast (Single Slope) PWM use TCA_SINGLE_WGMODE_SINGLESLOPE_gc
124
// For Phase Correct (Dual Slope) PWM use TCA_SINGLE_WGMODE_DSBOTTOM_gc
125
// See the manual for other pins, clocks, configs, portmux, etc
126
TCA0.SINGLE.CTRLB = TCA_SINGLE_CMP0EN_bm
127
| TCA_SINGLE_CMP1EN_bm
128
| TCA_SINGLE_WGMODE_DSBOTTOM_gc;
129
TCA0.SINGLE.CTRLA = TCA_SINGLE_CLKSEL_DIV1_gc
130
| TCA_SINGLE_ENABLE_bm;
132
PWM_TOP = PWM_TOP_INIT;
137
#define LAYOUT_DEFINED