]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/blob - src/hw/macs/cpmacdrv.h
Version 0.4 from Mike Line
[keystone-rtos/ibl.git] / src / hw / macs / cpmacdrv.h
1 /**
2  *  @file cpmacdrv.h
3  *
4  *  @brief
5  *    Describes the common API wrapper for all ethernet devices
6  *
7  */
8 #ifndef CPMACDRV_H
9 #define CPMACDRV_H
10  
11 #include "types.h"
12 #include "net.h"
15 Int32 cpmac_drv_start (NET_DRV_DEVICE* ptr_device);
16 Int32 cpmac_drv_send (NET_DRV_DEVICE* ptr_device, Uint8* buffer, int num_bytes);
17 Int32 cpmac_drv_receive (NET_DRV_DEVICE* ptr_device, Uint8* buffer);
18 Int32 cpmac_drv_stop (NET_DRV_DEVICE* ptr_device);
22 #endif /* CPMACDRV_H */