From c4af86c4f2227942ded811e9da76d6defe5c0424 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Fri, 8 May 2026 10:03:05 +0200 Subject: [PATCH] c03: added ressources. --- avr/devices/c03/main/ressources.asm | 11 ++++++++++- avr/devices/c03/main/ressources.inc | 4 ++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/avr/devices/c03/main/ressources.asm b/avr/devices/c03/main/ressources.asm index dd44ff1..e488a84 100644 --- a/avr/devices/c03/main/ressources.asm +++ b/avr/devices/c03/main/ressources.asm @@ -24,7 +24,7 @@ .org RESSOURCE_ADDR RessourceTable: - .dw 60 ; num of ressources + .dw 62 ; num of ressources .dw (resImageNetwork*2) ; 0: RESSOURCE_IMG_NETWORK .dw (resImageCloud*2) ; 1: RESSOURCE_IMG_CLOUD .dw (resImageTemp*2) ; 2: RESSOURCE_IMG_TEMP @@ -93,6 +93,9 @@ RessourceTable: .dw (resTextMotionSensor2*2) ; 58: RESSOURCE_TXT_MOTIONSENSOR2 .dw (resTextLightSensor*2) ; 59: RESSOURCE_TXT_LIGHTSENSOR + .dw (resTextDialogOk*2) ; 60: RESSOURCE_TXT_DIALOGOK + .dw (resTextDialogAbort*2) ; 61: RESSOURCE_TXT_DIALOGABORT + resImageNetwork: .dw DISPLAY_IMAGETYPE_IDX2RLE @@ -1208,6 +1211,12 @@ resTextMotionSensor2: resTextLightSensor: .db "Lichtsensor", 0 +resTextDialogOk: + .db "Ok", 0, 0 + +resTextDialogAbort: + .db "Abbruch", 0 + deviceCodeEnd: diff --git a/avr/devices/c03/main/ressources.inc b/avr/devices/c03/main/ressources.inc index 066cf2e..2b0946e 100644 --- a/avr/devices/c03/main/ressources.inc +++ b/avr/devices/c03/main/ressources.inc @@ -75,5 +75,9 @@ .equ RESSOURCE_TXT_MOTIONSENSOR2 = 58 .equ RESSOURCE_TXT_LIGHTSENSOR = 59 +.equ RESSOURCE_TXT_DIALOGOK = 60 +.equ RESSOURCE_TXT_DIALOGABORT = 61 + + #endif ; AQH_AVR_DEVICE_C03_RESSOURCES_INC