From aba71f73e002d913d92689693522aa27faad3f3f Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Thu, 26 Mar 2026 21:07:49 +0100 Subject: [PATCH] n30: added a warning message if to much code. --- avr/devices/n30/main/main.asm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/avr/devices/n30/main/main.asm b/avr/devices/n30/main/main.asm index 60d054d..ba93b69 100644 --- a/avr/devices/n30/main/main.asm +++ b/avr/devices/n30/main/main.asm @@ -61,7 +61,7 @@ #define APPS_NETWORK #define APPS_REPORTSENSORS -#define APPS_STATS +;#define APPS_STATS #define APPS_MA_LIGHT @@ -218,4 +218,9 @@ onEveryLoop: +deviceCodeEnd: + .if deviceCodeEnd >= BOOTLOADER_ADDR + .warning "Code reaches into boot loader!" + .endif +