mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
68b0002490
* bugfix, print not allowed in constructor * Update tpuart_data_link_layer.cpp - start confirm timout only after last byte was sent - increase BYTE_TIMEOUT * -bugfix Arduino set knxUart * Update knx-bme680.ino * Update knx-demo.ino * Update knx-hdc1008.ino * Update knx-sonoffS20.ino * Update knx-bme680.ino * Update knx-demo.ino * Update arduino_platform.cpp * Update dpt.h * Update esp32_platform.h * Update esp_platform.h
19 lines
295 B
C++
19 lines
295 B
C++
#include "arduino_platform.h"
|
|
|
|
#include "Arduino.h"
|
|
|
|
#ifdef ARDUINO_ARCH_SAMD
|
|
|
|
class SamdPlatform : public ArduinoPlatform
|
|
{
|
|
public:
|
|
SamdPlatform();
|
|
SamdPlatform( HardwareSerial* s);
|
|
|
|
void restart();
|
|
uint8_t* getEepromBuffer(uint16_t size);
|
|
void commitToEeprom();
|
|
};
|
|
|
|
#endif
|