1
0
minibtx-acn/firmware/delay.c
2018-06-01 10:49:06 +02:00

110 lines
3.3 KiB
C

/*
####################################################################################
# #
# Bildschirmtricks Firmware V1.0.0 #
# Delay-Routines #
# #
# Copyright (C) 2008 Philipp Fabian Benedikt Maier (aka. Dexter) #
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the Free Software #
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #
# #
#################################################################################### */
/* ## HEADER ########################################################################## */
#include <util/delay.h> /* Include delay functions */
#include <avr/interrupt.h> /* Include Interrupt control */
#include "delay.h" /* Include own header file */
/* #################################################################################### */
/* ## DELAY CONTROL ################################################################### */
void systemDelay1s(uint8_t value)
{
while(value--)
systemDelay10ms(100);
return;
}
void systemDelay10ms(uint8_t value)
{
while(value--)
_delay_ms(10);
return;
}
void systemDelay100ms(uint8_t value)
{
while(value--)
systemDelay10ms(10);
return;
}
void systemDelay1ms(uint8_t value)
{
while(value--)
_delay_ms(1);
return;
}
void systemDelay10us(uint8_t value)
{
while(value--)
_delay_us(10);
return;
}
void systemDelay100us(uint8_t value)
{
while(value--)
systemDelay10us(10);
return;
}
void systemDelay1us(uint8_t value)
{
while(value--)
_delay_us(1);
return;
}
void systemDelay05us(uint8_t value)
{
while(value--)
_delay_us(0.5);
return;
}
void systemDelay01us(uint8_t value)
{
while(value--)
_delay_us(0.1);
return;
}
void systemDelay16(uint16_t value)
{
_delay_loop_2(value);
return;
}
void systemDelay8(uint8_t value)
{
_delay_loop_1(value);
return;
}
/* #################################################################################### */