~toykeeper/flashlight-firmware/fsm

« back to all changes in this revision

Viewing changes to ToyKeeper/hwdef-blf-q8-t1616.h

  • Committer: Selene ToyKeeper
  • Date: 2023-11-04 15:09:10 UTC
  • mfrom: (483.1.175 anduril2)
  • Revision ID: bzr@toykeeper.net-20231104150910-ddd3afw4nhfvof2l
merged anduril2 branch -> fsm, with *years* of changes
(this also means this code is now Anduril 2 instead of Anduril 1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
4
#pragma once
 
5
 
 
6
/*
 
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)
 
10
 * Driver pinout:
 
11
 * eSwitch:    PA5
 
12
 * Aux LED:    PB5
 
13
 * PWM FET:    PB0 (TCA0 WO0)
 
14
 * PWM 1x7135: PB1 (TCA0 WO1)
 
15
 * Voltage:    VCC
 
16
 */
 
17
 
 
18
#define ATTINY 1616
 
19
#include <avr/io.h>
 
20
 
 
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
 
24
 
 
25
// allow using aux LEDs as extra channel modes
 
26
#include "chan-aux.h"
 
27
 
 
28
// channel modes:
 
29
// * 0. FET+7135 stacked
 
30
// * 1. aux LEDs
 
31
#define NUM_CHANNEL_MODES  2
 
32
enum CHANNEL_MODES {
 
33
    CM_MAIN = 0,
 
34
    CM_AUX
 
35
};
 
36
 
 
37
#define DEFAULT_CHANNEL_MODE  CM_MAIN
 
38
 
 
39
// right-most bit first, modes are in fedcba9876543210 order
 
40
#define CHANNEL_MODES_ENABLED 0b00000001
 
41
 
 
42
 
 
43
#define PWM_CHANNELS 2  // old, remove this
 
44
 
 
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
 
51
 
 
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
 
57
 
 
58
// 1x7135 channel
 
59
#define CH1_PIN  PB1
 
60
#define CH1_PWM  TCA0.SINGLE.CMP1BUF  // CMP1 is the output compare register for PB1
 
61
 
 
62
// DD FET channel
 
63
#define CH2_PIN  PB0
 
64
#define CH2_PWM  TCA0.SINGLE.CMP0BUF  // CMP0 is the output compare register for PB0
 
65
 
 
66
// e-switch
 
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
 
72
 
 
73
// average drop across diode on this hardware
 
74
#ifndef VOLTAGE_FUDGE_FACTOR
 
75
#define VOLTAGE_FUDGE_FACTOR 7  // add 0.35V
 
76
#endif
 
77
 
 
78
// lighted button
 
79
#define AUXLED_PIN   PIN5_bp
 
80
#define AUXLED_PORT  PORTB
 
81
 
 
82
 
 
83
inline void hwdef_setup() {
 
84
 
 
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 );
 
88
 
 
89
    //VPORTA.DIR = ...;
 
90
    // Outputs
 
91
    VPORTB.DIR = PIN0_bm   // DD FET
 
92
               | PIN1_bm   // 7135
 
93
               | PIN5_bm;  // Aux LED
 
94
    //VPORTC.DIR = ...;
 
95
 
 
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;
 
105
 
 
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
 
112
 
 
113
    PORTC.PIN0CTRL = PORT_PULLUPEN_bm;
 
114
    PORTC.PIN1CTRL = PORT_PULLUPEN_bm;
 
115
    PORTC.PIN2CTRL = PORT_PULLUPEN_bm;
 
116
    PORTC.PIN3CTRL = PORT_PULLUPEN_bm;
 
117
 
 
118
    // set up the PWM
 
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;
 
131
 
 
132
    PWM_TOP = PWM_TOP_INIT;
 
133
 
 
134
}
 
135
 
 
136
 
 
137
#define LAYOUT_DEFINED
 
138