From 00bea4d9f629ccf54455cafd03924f3bc1ef3e81 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Mon, 16 Feb 2026 01:10:49 +0100 Subject: [PATCH] s03: use 16MHz clock (should work with 3V3). --- avr/devices/s03/boot/boot.asm | 2 +- avr/devices/s03/main/main.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/avr/devices/s03/boot/boot.asm b/avr/devices/s03/boot/boot.asm index 18e3064..cd5da71 100644 --- a/avr/devices/s03/boot/boot.asm +++ b/avr/devices/s03/boot/boot.asm @@ -6,7 +6,7 @@ ; All definitions and changes should go into this file. ; *************************************************************************** -.equ clock=20000000 ; Define the clock frequency +.equ clock=16000000 ; Define the clock frequency .nolist .include "include/m644Pdef.inc" ; Define device ATmega644P diff --git a/avr/devices/s03/main/main.asm b/avr/devices/s03/main/main.asm index cff68c6..ace74c6 100644 --- a/avr/devices/s03/main/main.asm +++ b/avr/devices/s03/main/main.asm @@ -8,7 +8,7 @@ ; *************************************************************************** ;.equ clock=1000000 ; Define the clock frequency -.equ clock=20000000 ; Define the clock frequency +.equ clock=16000000 ; Define the clock frequency