1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /************************************************************************
- Project: Welling Motor Control Paltform
- Filename: i2c_master.c
- Partner Filename: i2c_master.h
- Description: I2C master driver
- Complier: IAR Embedded Workbench for ARM 8.40.2
- CPU TYPE : STM32F30x
- *************************************************************************
- Copyright (c) 2018 Welling Motor Technology(Shanghai) Co. Ltd.
- All rights reserved.
- *************************************************************************
- *************************************************************************
- Revising History (ECL of this file):
- M0_20170410, by liyue, create this file;
- ************************************************************************/
- /************************************************************************
- Beginning of File, do not put anything above here except notes
- Compiler Directives:
- *************************************************************************/
- #ifndef _I2C_MASTER_C_
- #define _I2C_MASTER_C_
- #endif
- /************************************************************************
- Included File
- *************************************************************************/
- #include "syspar.h"
- #include "user.h"
- /*************************************************************************
- Exported Functions (N/A)
- *************************************************************************/
- /*************************************************************************
- Copyright (c) 2018 Welling Motor Technology(Shanghai) Co. Ltd.
- All rights reserved.
- *************************************************************************/
- #ifdef _SPI_SLAVE_C_
- #undef _SPI_SLAVE_C_
- #endif
- /*************************************************************************
- End of this File (EOF)!
- Do not put anything after this part!
- *************************************************************************/
|