Common Delay Service. More...
#include <sysclk.h>

Go to the source code of this file.
Macros | |
| #define | delay_init(fcpu_hz) | 
| Initialize the delay driver.  More... | |
| #define | delay_ms(delay) ((delay) ? cpu_delay_ms(delay, F_CPU) : cpu_delay_us(1, F_CPU)) | 
| Delay in milliseconds.  More... | |
| #define | delay_s(delay) ((delay) ? cpu_delay_ms(1000 * delay, F_CPU) : cpu_delay_us(1, F_CPU)) | 
| Delay in seconds.  More... | |
| #define | delay_us(delay) ((delay) ? cpu_delay_us(delay, F_CPU) : cpu_delay_us(1, F_CPU)) | 
| Delay in microseconds.  More... | |
| #define | F_CPU sysclk_get_cpu_hz() | 
| MCU Clock Frequency (Hertz)  More... | |
Common Delay Service.
Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries.
Definition in file delay.h.