knx/src/stm32_platform.h

26 lines
482 B
C
Raw Normal View History

2020-04-02 18:09:53 +02:00
#ifdef ARDUINO_ARCH_STM32
#include "arduino_platform.h"
class Stm32Platform : public ArduinoPlatform
{
public:
Stm32Platform();
Stm32Platform( HardwareSerial* s);
~Stm32Platform();
// unique serial number
uint32_t uniqueSerialNumber() override;
2020-04-02 18:09:53 +02:00
// basic stuff
void restart();
//memory
uint8_t* getEepromBuffer(uint32_t size);
2020-04-02 18:09:53 +02:00
void commitToEeprom();
private:
uint8_t *_eepromPtr = nullptr;
uint16_t _eepromSize = 0;
2020-04-02 18:09:53 +02:00
};
#endif