UART to I2C master(s) converter, targetting to emulate SC18IM700(NXP) chip
UART to I2C master(s) converter, targetting to emulate SC18IM700(NXP) chip
Features
up to 4x I2C master
- for LPC824 implement, we can use up to 4 channels of I2C masters
- 1x Fm+ and 3x Fm I2C channels
- for LPC1768 implement, we can use up to 2 channels of I2C masters
- 2x Fm I2C channels
- for LPC11U35 implement, only one channel for I2C master,
but program uses USB CDC class for UART communication (means no external USB-Serial converter chip)
- 1x Fm+ I2C channels
1x SPI master
up to 2x 8bit GPIO
Tested Platforms
LPC824
- https://developer.mbed.org/platforms/Switch-Science-mbed-LPC824/
- https://developer.mbed.org/platforms/LPCXpresso824-MAX/
LPC1768
LPC11U35
Quote:
LPC11U35 implement requires importing USBDevice library to use USBSerial class
visit https://github.com/K4zuki/tinyI2C for more information
Diff: settings.h
- Revision:
- 76:fcbc456010e0
- Parent:
- 42:da85c17ea495
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/settings.h Wed Aug 31 02:39:01 2016 +0900 @@ -0,0 +1,29 @@ +/* +settings.h +*/ + +// #define isI2C1 // unused(always enabled) +// #define isGPIO0 // unused(always enabled) + +enum chipID_e { + ID_LPC824 = '0', + ID_LPC1768 = '1', + ID_LPC11UXX = '2', +}; + +#if defined(TARGET_SSCI824) || defined(TARGET_LPC824) +#warning "tinyI2C_824.h" +#include "tinyI2C_824.h" + +#elif defined(TARGET_LPC11U35_501) || defined(TARGET_LPC11U35_401) + +#warning "import USBDevice library" +#include "tinyI2C_11U3x.h" + +#elif defined(TARGET_LPC1768) + +#warning "tinyI2C_1768.h" +#include "tinyI2C_1768.h" + +#endif +