diff options
Diffstat (limited to '')
| -rw-r--r-- | hw/sofirn/blf-lt1-t1616/cfg.h | 2 | ||||
| -rw-r--r-- | hw/sofirn/blf-lt1-t1616/hwdef.c | 2 | ||||
| -rw-r--r-- | hw/sofirn/blf-lt1-t1616/hwdef.h | 4 | ||||
| -rw-r--r-- | hw/sofirn/blf-lt1/cfg.h | 2 | ||||
| -rw-r--r-- | hw/sofirn/blf-lt1/hwdef.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/hw/sofirn/blf-lt1-t1616/cfg.h b/hw/sofirn/blf-lt1-t1616/cfg.h index fc02619..eea5ef5 100644 --- a/hw/sofirn/blf-lt1-t1616/cfg.h +++ b/hw/sofirn/blf-lt1-t1616/cfg.h @@ -4,7 +4,7 @@ #pragma once #define MODEL_NUMBER "0622" -#include "hwdef-blf-lt1-t1616.h" +#include "sofirn/blf-lt1-t1616/hwdef.h" // ATTINY: 1616 // the button lights up diff --git a/hw/sofirn/blf-lt1-t1616/hwdef.c b/hw/sofirn/blf-lt1-t1616/hwdef.c index 9d268a4..5a83849 100644 --- a/hw/sofirn/blf-lt1-t1616/hwdef.c +++ b/hw/sofirn/blf-lt1-t1616/hwdef.c @@ -3,7 +3,7 @@ // SPDX-License-Identifier: GPL-3.0-or-later #pragma once -#include "chan-aux.c" +#include "fsm/chan-aux.c" void set_level_zero(); diff --git a/hw/sofirn/blf-lt1-t1616/hwdef.h b/hw/sofirn/blf-lt1-t1616/hwdef.h index 7c1f10b..203cdc8 100644 --- a/hw/sofirn/blf-lt1-t1616/hwdef.h +++ b/hw/sofirn/blf-lt1-t1616/hwdef.h @@ -15,10 +15,10 @@ #define ATTINY 1616 #include <avr/io.h> -#define HWDEF_C_FILE hwdef-blf-lt1-t1616.c +#define HWDEF_C_FILE sofirn/blf-lt1-t1616/hwdef.c // allow using aux LEDs as extra channel modes -#include "chan-aux.h" +#include "fsm/chan-aux.h" // channel modes: // * 0. warm only diff --git a/hw/sofirn/blf-lt1/cfg.h b/hw/sofirn/blf-lt1/cfg.h index 53c3203..e60c9f7 100644 --- a/hw/sofirn/blf-lt1/cfg.h +++ b/hw/sofirn/blf-lt1/cfg.h @@ -4,7 +4,7 @@ #pragma once #define MODEL_NUMBER "0621" -#include "hwdef-blf-lt1.h" +#include "sofirn/blf-lt1/hwdef.h" // ATTINY: 85 // the button lights up diff --git a/hw/sofirn/blf-lt1/hwdef.h b/hw/sofirn/blf-lt1/hwdef.h index b113fd4..192d067 100644 --- a/hw/sofirn/blf-lt1/hwdef.h +++ b/hw/sofirn/blf-lt1/hwdef.h @@ -15,7 +15,7 @@ #define ATTINY 85 #include <avr/io.h> -#define HWDEF_C_FILE hwdef-blf-lt1.c +#define HWDEF_C_FILE sofirn/blf-lt1/hwdef.c // channel modes: // * 0. channel 1 only |
