1 /* 2 * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef BOOT_ARCH_CPU_H 6 #define BOOT_ARCH_CPU_H 7 8 9 #include <SupportDefs.h> 10 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 17 void calculate_cpu_conversion_factor(uint8 channel); 18 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* BOOT_ARCH_CPU_H */ 25