mirror of
https://github.com/thelsing/knx.git
synced 2025-10-26 10:26:25 +01:00
* Add defines for LED, button and serial port To make supporting different board layouts easier, this introduces some new defines: For all platforms: - `KNX_LED` - the programming LED, defaults to `LED_BUILTIN` - `KNX_BUTTON` - the programming button, defaults to `0` For Arduino platforms: - `KNX_DEBUG_SERIAL` - the serial port that is used for debugging, defaults to `Serial` - `KNX_SERIAL` - the serial port used for communication with the TPUART, default depends on platform * GD32 flash workaround Addressing #181 At least some GD32 devices seem to require unlocking the flash twice. As the unlock function exits with `HAL_OK` if the flash is already unlocked, STM32 devices can run the same code without issues. * Add H8I8O and H8C09 configurations to knx-demo Addressing #181 These configurations both serve as examples for the use of these boards and other custom boards that don't use the standard pinout. * Add STM32 unlock target This copies the brute force unlock approach by @pavkriz into a custom target. With this commit, it is possible to automatically unlock e.g. a H8I8O board without leaving the PlatformIO IDE. See #181
42 lines
950 B
C++
42 lines
950 B
C++
#include "knx/platform.h"
|
|
|
|
#include "Arduino.h"
|
|
|
|
#ifndef KNX_DEBUG_SERIAL
|
|
#define KNX_DEBUG_SERIAL Serial
|
|
#endif
|
|
|
|
class ArduinoPlatform : public Platform
|
|
{
|
|
public:
|
|
ArduinoPlatform();
|
|
ArduinoPlatform(HardwareSerial* knxSerial);
|
|
|
|
// basic stuff
|
|
void fatalError();
|
|
|
|
//uart
|
|
virtual void knxUart( HardwareSerial* serial);
|
|
virtual HardwareSerial* knxUart();
|
|
virtual void setupUart();
|
|
virtual void closeUart();
|
|
virtual int uartAvailable();
|
|
virtual size_t writeUart(const uint8_t data);
|
|
virtual size_t writeUart(const uint8_t* buffer, size_t size);
|
|
virtual int readUart();
|
|
virtual size_t readBytesUart(uint8_t* buffer, size_t length);
|
|
|
|
//spi
|
|
#ifndef KNX_NO_SPI
|
|
void setupSpi() override;
|
|
void closeSpi() override;
|
|
int readWriteSpi (uint8_t *data, size_t len) override;
|
|
#endif
|
|
#ifndef KNX_NO_PRINT
|
|
static Stream* SerialDebug;
|
|
#endif
|
|
|
|
protected:
|
|
HardwareSerial* _knxSerial;
|
|
};
|