Writes a desired number of bytes from the the pointer
| 2632 | |
| 2633 | // Writes a desired number of bytes from the the pointer |
| 2634 | bool ArduinoInterface::deviceWrite(const void* source, const unsigned int numBytes) { |
| 2635 | return m_comPort.write(source, numBytes) == numBytes; |
| 2636 | } |
| 2637 | |
| 2638 | // Read a byte from the user eeprom area |
| 2639 | DiagnosticResponse ArduinoInterface::eepromRead(unsigned char position, unsigned char& value) { |