returns I2C status, 0 = OK
| 115 | |
| 116 | // returns I2C status, 0 = OK |
| 117 | int I2C_eeprom::writeBlock(const uint16_t memoryAddress, const uint8_t * buffer, const uint16_t length) |
| 118 | { |
| 119 | int rv = _pageBlock(memoryAddress, buffer, length, true); |
| 120 | return rv; |
| 121 | } |
| 122 | |
| 123 | |
| 124 | ///////////////////////////////////////////////////////////// |