1 /*
2  * Copyright 2014, General Dynamics C4 Systems
3  *
4  * SPDX-License-Identifier: GPL-2.0-only
5  */
6 
7 #pragma once
8 
9 /* ms after which a wraparound occurs (max. 54) */
10 #define PIT_WRAPAROUND_MS 50
11 
12 void pit_init(void);
13 void pit_wait_wraparound(void);
14 
15