This is file Delay.h
This file is part of HX711 routines
/*============================================================================*/ /* Copyright (c)2017, Isaac Marino Bavaresco All rights reserved. */ /*============================================================================*/ #if !defined __DELAY_H__ #define __DELAY_H__ /*============================================================================*/ unsigned char _Delay_us ( unsigned char t ); #define Delay_us(t) _Delay_us((t)-2) void Delay_ms ( unsigned short t ); /*============================================================================*/ #endif /* !defined __DELAY_H__ */ /*============================================================================*/