From c36443054939d6d11f431a4441f27d6d3ee95b3f Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 26 Apr 2026 18:10:55 +0000 Subject: [PATCH] Updated project.json with atmega328p target --- blinky/project.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/blinky/project.json b/blinky/project.json index c51b331..d23873f 100644 --- a/blinky/project.json +++ b/blinky/project.json @@ -35,12 +35,16 @@ // Additional libraries, sources // and overrides of global settings here. }, - "avr": { + "atmega328p": { "type": "executable", "triple": "avr-atmel-none", "cpu": "atmega328p", "sources": ["src/*.c3"], - "linker-flags": ["-Tdata=0x800100", "-mmcu=atmega328p"] + "linker-flags": [ + "-L/home/coder/bin/avr-toolchain/lib", + "-Tdata=0x800100", + "-mmcu=atmega328p" + ] } }, // Global settings.