59 #define DISKIO_DEVICE_TYPE_NOT_RECOGNIZED 0
60 #define DISKIO_DEVICE_TYPE_SD_CARD 1
61 #define DISKIO_DEVICE_TYPE_GENERIC_FLASH 2
62 #define DISKIO_DEVICE_TYPE_PARTITION 128
65 #define DISKIO_MAX_SECTOR_SIZE 512
68 #define DISKIO_DEVICE_TYPE_MASK 0x7f
70 #define DISKIO_SUCCESS 0
71 #define DISKIO_ERROR_NO_DEVICE_SELECTED 1
72 #define DISKIO_ERROR_INTERNAL_ERROR 2
73 #define DISKIO_ERROR_DEVICE_TYPE_NOT_RECOGNIZED 3
74 #define DISKIO_ERROR_OPERATION_NOT_SUPPORTED 4
75 #define DISKIO_ERROR_TO_BE_IMPLEMENTED 5
76 #define DISKIO_FAILURE 6
77 #define DISKIO_ERROR_TRY_AGAIN 7
78 #define DISKIO_ERROR_FATAL 8
80 #ifndef DISKIO_MAX_DEVICES
81 #define DISKIO_MAX_DEVICES 5
84 #define DISKIO_OP_WRITE_BLOCK 1
85 #define DISKIO_OP_READ_BLOCK 2
86 #define DISKIO_OP_WRITE_BLOCKS_START 10
87 #define DISKIO_OP_WRITE_BLOCKS_NEXT 11
88 #define DISKIO_OP_WRITE_BLOCKS_DONE 12
89 #define DISKIO_OP_READ_BLOCKS 4