Other Parts Discussed in Thread: OMAP3530
Hi,
Do you have any information about the definitions in WINCE6.0 such as:
#define CTL_CODE( DeviceType, Function, Method, Access ) ( \
((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) )
#define IOCTL_SPI_CONFIGURE \
CTL_CODE(FILE_DEVICE_UNKNOWN, 0x0200, METHOD_BUFFERED, FILE_ANY_ACCESS)
I can't find that! I need to define IOCTL_SPI_WRITEREAD in my driver. but any information doesn't exist... :(
My board is DevKit8000 (Omap3530). How can i find the function in CTL_CODE for SPI_WRITEREAD? do you have any hint...