/***************************************************************************** Copyright(c) 2009 FCI Inc. All Rights Reserved File name : fci_oal.c Description : OS Adaptation Layer History : ---------------------------------------------------------------------- 2009/09/13 jason initial *******************************************************************************/ #include #include #include "fci_types.h" void PRINTF(HANDLE hDevice, char *fmt, ...) { va_list ap; char str[256]; va_start(ap, fmt); vsprintf(str, fmt, ap); printk("%s", str); va_end(ap); } void msWait(int ms) { msleep(ms); }