Hi. I am trying to run a crontab every minute, but is looks like the minimum time resolution I can get is actually TWO minutes.
this happens on a RT-AX88U Pro with Firmware: 3006.102.5.
	
	
	
		
the script code is very basic:
	
	
	
		
but the log shows the script runs every TWO minutes
	
	
	
		
				
			this happens on a RT-AX88U Pro with Firmware: 3006.102.5.
		Code:
	
	crontab -l
*/1 * * * * sh /tmp/mnt/MicScripts/micscripts/time.sh #timing#
	the script code is very basic:
		Code:
	
	PATH=/opt/bin:/opt/sbin:/sbin:/bin:/usr/sbin:/usr/bin
export PATH
echo "SCRIPT start: $(date '+%F %T')" >> /tmp/mnt/MicScripts/micscripts/loop_timing.log
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do
sleep 3
done
echo "SCRIPT end: $(date '+%F %T')" >> /tmp/mnt/MicScripts/micscripts/loop_timing.log
echo "----------------------------------------" >> /tmp/mnt/MicScripts/micscripts/loop_timing.log
	but the log shows the script runs every TWO minutes
		Code:
	
	SCRIPT start: 2025-09-18 11:07:00
SCRIPT end: 2025-09-18 11:07:54
----------------------------------------
SCRIPT start: 2025-09-18 11:09:00
SCRIPT end: 2025-09-18 11:09:54
----------------------------------------
SCRIPT start: 2025-09-18 11:11:00
SCRIPT end: 2025-09-18 11:11:54
----------------------------------------
	
	