do away with some feature #ifdefs add #ifndef KNX_NO_* if necessary

This commit is contained in:
Thomas Kunze 2024-08-17 12:51:31 +02:00
parent 32bd812ace
commit cd62a78eb4
62 changed files with 20 additions and 267 deletions

2
.gitignore vendored
View File

@ -23,7 +23,7 @@ bld/
[Ll]og/
out
flash.bin
build
build*
dist
*.egg-info
doxyoutput

View File

@ -103,10 +103,5 @@ int main(int argc, char **argv)
// opens the "value" sysfs file to read or write the GPIO pin value.
// The following calls will close the "value" sysfs fiel for the pin
// and unexport the GPIO pin.
#ifdef USE_RF
gpio_unexport(SPI_SS_PIN);
gpio_unexport(GPIO_GDO2_PIN);
gpio_unexport(GPIO_GDO0_PIN);
#endif
printf("main() exit.\n");
}

View File

@ -160,10 +160,5 @@ int main(int argc, char **argv)
// opens the "value" sysfs file to read or write the GPIO pin value.
// The following calls will close the "value" sysfs fiel for the pin
// and unexport the GPIO pin.
#ifdef USE_RF
gpio_unexport(SPI_SS_PIN);
gpio_unexport(GPIO_GDO2_PIN);
gpio_unexport(GPIO_GDO0_PIN);
#endif
printf("main() exit.\n");
}

View File

@ -1,27 +0,0 @@
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
src_dir = examples/knx-demo
[env]
platform = atmelsam
board = zeroUSB
framework = arduino
build_type = debug
monitor_speed = 115200
lib_ldf_mode = deep+
lib_extra_dirs =
${sysenv.USERPROFILE}/Documents/PlatformIO/Projects
build_flags =
-Wno-unknown-pragmas
[env:build]

View File

@ -187,5 +187,5 @@ set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wno-unknown-pragmas -
add_library(knx SHARED ${SOURCES})
target_include_directories(knx PUBLIC .)
set_property(TARGET knx PROPERTY CXX_STANDARD 11)
target_compile_definitions(knx PUBLIC -DUSE_RF -DUSE_USB -DUSE_TP -D_USE_IP -DUSE_CEMI_SERVER
-DKNX_TUNNELING=1 -DUSE_DATASECURE -DALL_MASKS)
target_compile_definitions(knx PUBLIC -DUSE_USB -DUSE_CEMI_SERVER
-DKNX_TUNNELING=1 -DUSE_DATASECURE)

View File

@ -1,6 +1,3 @@
#include "config.h"
#if (MASK_VERSION == 0x07B0) || defined(ALL_MASKS)
#include "bau07B0.h"
#include "bits.h"
#include <string.h>
@ -174,5 +171,4 @@ TPAckType Bau07B0::isAckRequired(uint16_t address, bool isGrpAddr)
TpUartDataLinkLayer* Bau07B0::getDataLinkLayer()
{
return (TpUartDataLinkLayer*)&_dlLayer;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "config.h"
#if MASK_VERSION == 0x091A || defined(ALL_MASKS)
#include "bau091A.h"
#include "bits.h"
#include <string.h>
@ -253,5 +250,4 @@ IpDataLinkLayer* Bau091A::getPrimaryDataLinkLayer()
TpUartDataLinkLayer* Bau091A::getSecondaryDataLinkLayer()
{
return (TpUartDataLinkLayer*)&_dlLayerSecondary;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "config.h"
#if MASK_VERSION == 0x27B0 || defined(ALL_MASKS)
#include "bau27B0.h"
#include "bits.h"
#include <string.h>
@ -203,5 +200,4 @@ void Bau27B0::domainAddressSerialNumberReadLocalConfirm(Priority priority, HopCo
RfDataLinkLayer* Bau27B0::getDataLinkLayer()
{
return (RfDataLinkLayer*)&_dlLayer;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "config.h"
#if MASK_VERSION == 0x2920 || defined(ALL_MASKS)
#include "bau2920.h"
#include "bits.h"
#include <string.h>
@ -177,5 +174,4 @@ TpUartDataLinkLayer* Bau2920::getPrimaryDataLinkLayer()
RfDataLinkLayer* Bau2920::getSecondaryDataLinkLayer()
{
return (RfDataLinkLayer*)&_dlLayerSecondary;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "config.h"
#if MASK_VERSION == 0x57B0 || defined(ALL_MASKS)
#include "bau57B0.h"
#include "bits.h"
#include <string.h>
@ -165,5 +162,4 @@ void Bau57B0::loop()
IpDataLinkLayer* Bau57B0::getDataLinkLayer()
{
return (IpDataLinkLayer*)&_dlLayer;
}
#endif
}

View File

@ -1,4 +1,3 @@
#if ((MASK_VERSION != 0x07B0) && (MASK_VERSION != 0x27B0) && (MASK_VERSION != 0x57B0)) || defined(ALL_MASKS)
#include "bau_systemB_coupler.h"
#include "bits.h"
#include <string.h>
@ -59,4 +58,3 @@ void BauSystemBCoupler::doMasterReset(EraseCode eraseCode, uint8_t channel)
_secIfObj.masterReset(eraseCode, channel);
#endif
}
#endif

View File

@ -1,4 +1,3 @@
#if (MASK_VERSION == 0x07B0) || (MASK_VERSION == 0x27B0) || (MASK_VERSION == 0x57B0) || defined(ALL_MASKS)
#include "bau_systemB_device.h"
#include "bits.h"
#include <string.h>
@ -259,5 +258,4 @@ void BauSystemBDevice::groupValueWriteIndication(uint16_t asap, Priority priorit
return;
updateGroupObject(go, data, dataLength);
}
#endif
}

View File

@ -165,7 +165,7 @@ void CemiFrame::fillTelegramTP(uint8_t* data)
data[len - 1] = calcCrcTP(data, len - 1);
}
#ifdef USE_RF
#ifndef KNX_NO_RF
uint16_t CemiFrame::telegramLengthtRF() const
{
return totalLenght() - 3;
@ -321,7 +321,7 @@ void CemiFrame::destinationAddress(uint16_t value)
{
pushWord(value, _ctrl1 + 4);
}
#ifdef USE_RF
#ifndef KNX_NO_RF
uint8_t* CemiFrame::rfSerialOrDoA() const
{
return _rfSerialOrDoA;

View File

@ -80,7 +80,7 @@ class CemiFrame
TPDU _tpdu;
APDU _apdu;
uint16_t _length = 0; // only set if created from byte array
#ifdef USE_RF
#ifndef KNX_NO_RF
// FIXME: integrate this propery in _data
// only for RF medium
uint8_t* _rfSerialOrDoA = 0;

View File

@ -1,6 +1,3 @@
#include "config.h"
#ifdef USE_CEMI_SERVER
#include "cemi_server.h"
#include "cemi_frame.h"
#include "bau_systemB.h"
@ -425,5 +422,3 @@ void CemiServer::loop()
_usbTunnelInterface.loop();
#endif
}
#endif

View File

@ -1,8 +1,5 @@
#pragma once
#include "config.h"
#ifdef USE_CEMI_SERVER
#include <stdint.h>
#include "knx_types.h"
#include "usb_tunnel_interface.h"
@ -56,9 +53,7 @@ class CemiServer
DataLinkLayer* _dataLinkLayer = nullptr;
DataLinkLayer* _dataLinkLayerPrimary = nullptr;
BauSystemB& _bau;
#ifdef USE_USB
#ifdef USE_USB
UsbTunnelInterface _usbTunnelInterface;
#endif
};
#endif

View File

@ -1,6 +1,3 @@
#include "config.h"
#ifdef USE_CEMI_SERVER
#include <cstring>
#include "cemi_server_object.h"
#include "bits.h"
@ -56,6 +53,3 @@ void CemiServerObject::clearSupportedMediaTypes()
// We also set the medium as not available too
property(PID_MEDIUM_AVAILABILITY)->write((uint16_t) 0);
}
#endif

View File

@ -1,8 +1,5 @@
#pragma once
#include "config.h"
#ifdef USE_CEMI_SERVER
#include "interface_object.h"
class CemiServerObject: public InterfaceObject
@ -13,5 +10,3 @@ class CemiServerObject: public InterfaceObject
void setMediumTypeAsSupported(DptMedium dptMedium);
void clearSupportedMediaTypes();
};
#endif

View File

@ -27,41 +27,6 @@
//#define MASK_VERSION 0x2920
// Data Linklayer Driver Options
#if MASK_VERSION == 0x07B0
#ifndef USE_IP
#define USE_IP
#endif
#endif
#if MASK_VERSION == 0x27B0
#ifndef USE_RF
#define USE_RF
#endif
#endif
#if MASK_VERSION == 0x57B0
#ifndef USE_IP
#define USE_IP
#endif
#endif
#if MASK_VERSION == 0x091A
#ifndef USE_TP
#define USE_TP
#endif
#ifndef USE_IP
#define USE_IP
#endif
#endif
#if MASK_VERSION == 0x2920
#ifndef USE_TP
#define USE_TP
#endif
#ifndef USE_RF
#define USE_RF
#endif
#endif
// cEMI options
//#define USE_USB
@ -72,12 +37,6 @@
#endif
#endif
#if defined(KNX_TUNNELING)
#ifndef USE_IP
#define USE_IP
#endif
#endif
// KNX Data Secure Options
// Define via a compiler -D flag if required
// #define USE_DATASECURE

View File

@ -258,7 +258,7 @@ bool DataLinkLayer::sendTelegram(NPDU& npdu, AckType ack, uint16_t destinationAd
// We can just copy the pointer for rfSerialOrDoA as sendFrame() sets
// a pointer to const uint8_t data in either device object (serial) or
// RF medium object (domain address)
#ifdef USE_RF
#ifndef KNX_NO_RF
tmpFrame.rfSerialOrDoA(frame.rfSerialOrDoA());
tmpFrame.rfInfo(frame.rfInfo());
tmpFrame.rfLfn(frame.rfLfn());

View File

@ -32,17 +32,15 @@ class DataLinkLayer
DataLinkLayer(DeviceObject& devObj, NetworkLayerEntity& netLayerEntity,
Platform& platform);
#ifdef USE_CEMI_SERVER
// from tunnel
void cemiServer(CemiServer& cemiServer);
void dataRequestFromTunnel(CemiFrame& frame);
void cemiServer(CemiServer& cemiServer);
#ifdef KNX_TUNNELING
virtual void dataRequestToTunnel(CemiFrame& frame);
virtual void dataConfirmationToTunnel(CemiFrame& frame);
virtual void dataIndicationToTunnel(CemiFrame& frame);
virtual bool isTunnelAddress(uint16_t addr);
void ipParameterObject(IpParameterObject* object);
#endif
#endif
// from network layer

View File

@ -88,7 +88,7 @@ DeviceObject::DeviceObject()
new DataProperty(PID_IO_LIST, false, PDT_UNSIGNED_INT, 8, ReadLv3 | WriteLv0),
new DataProperty(PID_HARDWARE_TYPE, true, PDT_GENERIC_06, 1, ReadLv3 | WriteLv3, hardwareType),
new DataProperty(PID_DEVICE_DESCRIPTOR, false, PDT_GENERIC_02, 1, ReadLv3 | WriteLv0),
#ifdef USE_RF
#ifndef KNX_NO_RF
new DataProperty(PID_RF_DOMAIN_ADDRESS_CEMI_SERVER, true, PDT_GENERIC_06, 1, ReadLv3 | WriteLv3),
#endif
};

View File

@ -1,6 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "ip_data_link_layer.h"
#include "../bits.h"
@ -1187,4 +1184,3 @@ bool IpDataLinkLayer::isSendLimitReached()
return false;
}
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "ip_host_protocol_address_information.h"
#include "../bits.h"
@ -47,4 +45,3 @@ void IpHostProtocolAddressInformation::ipPortNumber(uint16_t value)
{
pushWord(value, _data + 6);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "ip_parameter_object.h"
#include "../bits.h"
@ -139,4 +137,3 @@ uint16_t* IpParameterObject::additionalIndivualAddresses(uint8_t& numAddresses)
#endif
return (uint16_t*) propertyData(PID_ADDITIONAL_INDIVIDUAL_ADDRESSES);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_ch.h"
KnxIpCH::KnxIpCH(uint8_t* data) : _data(data)
@ -47,4 +45,3 @@ uint8_t KnxIpCH::status() const
{
return _data[3];
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_config_dib.h"
KnxIpConfigDIB::KnxIpConfigDIB(uint8_t* data, bool isCurrent) : KnxIpDIB(data)
@ -92,4 +90,3 @@ void KnxIpConfigDIB::info2(uint8_t addr)
else
_data[19] = addr;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_config_request.h"
KnxIpConfigRequest::KnxIpConfigRequest(uint8_t* data, uint16_t length)
@ -16,4 +14,3 @@ KnxIpCH& KnxIpConfigRequest::connectionHeader()
{
return _ch;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_connect_request.h"
KnxIpConnectRequest::KnxIpConnectRequest(uint8_t* data, uint16_t length)
@ -20,4 +18,3 @@ KnxIpCRI& KnxIpConnectRequest::cri()
{
return _cri;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_connect_response.h"
KnxIpConnectResponse::KnxIpConnectResponse(IpParameterObject& parameters, uint16_t address, uint16_t port, uint8_t channel, uint8_t type)
@ -42,4 +40,3 @@ KnxIpCRD& KnxIpConnectResponse::crd()
{
return _crd;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_crd.h"
KnxIpCRD::KnxIpCRD(uint8_t* data) : _data(data)
@ -40,4 +38,3 @@ void KnxIpCRD::address(uint16_t value)
_data[2] = value >> 8;
_data[3] = value & 0xFF;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_cri.h"
KnxIpCRI::KnxIpCRI(uint8_t* data) : _data(data)
@ -37,4 +35,3 @@ void KnxIpCRI::layer(uint8_t value)
{
_data[2] = value;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_description_request.h"
KnxIpDescriptionRequest::KnxIpDescriptionRequest(uint8_t* data, uint16_t length)
@ -12,4 +10,3 @@ IpHostProtocolAddressInformation& KnxIpDescriptionRequest::hpaiCtrl()
{
return _hpaiCtrl;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_description_response.h"
#define LEN_SERVICE_FAMILIES 2
@ -70,4 +68,3 @@ KnxIpSupportedServiceDIB& KnxIpDescriptionResponse::supportedServices()
{
return _supportedServices;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_device_information_dib.h"
#include "../bits.h"
@ -100,4 +98,3 @@ void KnxIpDeviceInformationDIB::friendlyName(const uint8_t* value)
{
pushByteArray(value, LEN_FRIENDLY_NAME, _data + 24);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_dib.h"
KnxIpDIB::KnxIpDIB(uint8_t* data) : _data(data)
@ -27,4 +25,3 @@ void KnxIpDIB::code(DescriptionTypeCode value)
{
_data[1] = value;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_disconnect_request.h"
KnxIpDisconnectRequest::KnxIpDisconnectRequest(uint8_t* data, uint16_t length)
@ -25,4 +23,3 @@ void KnxIpDisconnectRequest::channelId(uint8_t channelId)
{
_data[LEN_KNXIP_HEADER] = channelId;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_disconnect_response.h"
KnxIpDisconnectResponse::KnxIpDisconnectResponse(uint8_t channel, uint8_t status)
@ -10,4 +8,3 @@ KnxIpDisconnectResponse::KnxIpDisconnectResponse(uint8_t channel, uint8_t status
_data[LEN_KNXIP_HEADER] = channel;
_data[LEN_KNXIP_HEADER + 1] = status;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_extended_device_information_dib.h"
#include "../bits.h"
@ -40,4 +38,3 @@ void KnxIpExtendedDeviceInformationDIB::deviceDescriptor(uint16_t value)
{
pushWord(value, _data + 6);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_frame.h"
#include <cstring>
@ -78,4 +76,3 @@ KnxIpFrame::KnxIpFrame(uint16_t length)
protocolVersion(KnxIp1_0);
totalLength(length);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_knx_addresses_dib.h"
KnxIpKnxAddressesDIB::KnxIpKnxAddressesDIB(uint8_t* data) : KnxIpDIB(data)
@ -25,4 +23,3 @@ void KnxIpKnxAddressesDIB::additional(uint16_t addr)
currentPos += 2;
length(currentPos - _data);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_routing_indication.h"
#include <cstring>
@ -20,4 +18,3 @@ KnxIpRoutingIndication::KnxIpRoutingIndication(CemiFrame frame)
serviceTypeIdentifier(RoutingIndication);
memcpy(_data + LEN_KNXIP_HEADER, frame.data(), frame.totalLenght());
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_search_request.h"
KnxIpSearchRequest::KnxIpSearchRequest(uint8_t* data, uint16_t length)
@ -12,4 +10,3 @@ IpHostProtocolAddressInformation& KnxIpSearchRequest::hpai()
{
return _hpai;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_search_request_extended.h"
#include "../bits.h"
#include "service_families.h"
@ -66,4 +64,3 @@ bool KnxIpSearchRequestExtended::requestedDIB(uint8_t code)
return requestedDIBs[code];
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_search_response.h"
#define LEN_SERVICE_FAMILIES 2
@ -82,4 +80,3 @@ KnxIpSupportedServiceDIB& KnxIpSearchResponse::supportedServices()
{
return _supportedServices;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_search_response_extended.h"
#include "service_families.h"
@ -226,4 +224,3 @@ uint8_t* KnxIpSearchResponseExtended::DIBs()
{
return _data + LEN_KNXIP_HEADER + LEN_IPHPAI;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_state_request.h"
KnxIpStateRequest::KnxIpStateRequest(uint8_t* data, uint16_t length)
@ -15,4 +13,3 @@ uint8_t KnxIpStateRequest::channelId()
{
return _data[LEN_KNXIP_HEADER];
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_state_response.h"
#define LEN_SERVICE_FAMILIES 2
@ -24,4 +22,3 @@ KnxIpStateResponse::KnxIpStateResponse(uint8_t channelId, uint8_t errorCode)
_data[LEN_KNXIP_HEADER] = channelId;
_data[LEN_KNXIP_HEADER + 1] = errorCode;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_supported_service_dib.h"
KnxIpSupportedServiceDIB::KnxIpSupportedServiceDIB(uint8_t* data) : KnxIpDIB(data)
@ -42,4 +40,3 @@ void KnxIpSupportedServiceDIB::serviceVersion(ServiceFamily family, uint8_t ver
}
}
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_tunnel_connection.h"
KnxIpTunnelConnection::KnxIpTunnelConnection()
@ -19,4 +17,3 @@ void KnxIpTunnelConnection::Reset()
IndividualAddress = 0;
IsConfig = false;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_tunneling_ack.h"
#include <cstring>
@ -18,4 +16,3 @@ KnxIpCH& KnxIpTunnelingAck::connectionHeader()
{
return _ch;
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_tunneling_info_dib.h"
#include "service_families.h"
@ -27,4 +25,3 @@ void KnxIpTunnelingInfoDIB::tunnelingSlot(uint16_t addr, uint16_t state)
currentPos += 4;
length(currentPos - _data);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_IP
#include "knx_ip_tunneling_request.h"
#include <cstring>
@ -24,4 +22,3 @@ KnxIpCH& KnxIpTunnelingRequest::connectionHeader()
{
return _ch;
}
#endif

View File

@ -1,4 +1,3 @@
#if ((MASK_VERSION != 0x07B0) && (MASK_VERSION != 0x27B0) && (MASK_VERSION != 0x57B0)) || defined(ALL_MASKS)
#include "network_layer_coupler.h"
#include "data_link_layer.h"
#include "device_object.h"
@ -654,5 +653,4 @@ bool NetworkLayerCoupler::isTunnelAddress(uint16_t destination)
// tunnels are managed within the IpDataLinkLayer - kPrimaryIfIndex
return _netLayerEntities[kPrimaryIfIndex].dataLinkLayer().isTunnelAddress(destination);
}
#endif
#endif

View File

@ -1,4 +1,3 @@
#if (MASK_VERSION == 0x07B0) || (MASK_VERSION == 0x27B0) || (MASK_VERSION == 0x57B0) || defined(ALL_MASKS)
#include "network_layer_device.h"
#include "device_object.h"
#include "tpdu.h"
@ -149,4 +148,3 @@ void NetworkLayerDevice::systemBroadcastConfirm(AckType ack, FrameFormat format,
HopCountType hopType = npdu.hopCount() == 7 ? UnlimitedRouting : NetworkLayerParameter;
_transportLayer.dataSystemBroadcastConfirm(ack, hopType, npdu.tpdu(), priority, status);
}
#endif

View File

@ -1,6 +1,3 @@
#include "../config.h"
#ifdef USE_RF
#if defined(DeviceFamily_CC13X0)
#include "rf_physical_layer_cc1310.h"
#else
@ -380,5 +377,4 @@ void RfDataLinkLayer::loadNextTxFrame(uint8_t** sendBuffer, uint16_t* sendBuffer
}
delete tx_frame;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "../config.h"
#ifdef USE_RF
#include <cstring>
#include "rf_medium_object.h"
#include "../bits.h"
@ -57,4 +54,3 @@ void RfMediumObject::rfDomainAddress(const uint8_t* value)
Property* prop = property(PID_RF_DOMAIN_ADDRESS);
prop->write(value);
}
#endif

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_RF
#ifndef DeviceFamily_CC13X0
#include "rf_physical_layer_cc1101.h"
@ -779,5 +777,4 @@ void RfPhysicalLayerCC1101::loop()
}
}
#endif // DeviceFamily_CC13X0
#endif
#endif // DeviceFamily_CC13X0

View File

@ -1,5 +1,3 @@
#include "../config.h"
#ifdef USE_RF
#ifdef DeviceFamily_CC13X0
@ -372,5 +370,4 @@ void RfPhysicalLayerCC1310::loop()
}
}
#endif // DeviceFamily_CC13X0
#endif
#endif // DeviceFamily_CC13X0

View File

@ -1,5 +1,4 @@
#include "config.h"
#if ((MASK_VERSION != 0x07B0) && (MASK_VERSION != 0x27B0) && (MASK_VERSION != 0x57B0)) || defined(ALL_MASKS)
#include <cstring>
#include "router_object.h"
@ -601,5 +600,4 @@ bool RouterObject::isGroupAddressInFilterTable(uint16_t groupAddress)
}
return false;
}
#endif
}

View File

@ -1,6 +1,3 @@
#include "config.h"
#ifdef USE_USB
#include "bits.h"
#include "usb_tunnel_interface.h"
#include "cemi_server.h"
@ -561,5 +558,3 @@ uint16_t UsbTunnelInterface::getHidReportDescriptorLength()
{
return sizeof(descHidReport);
}
#endif

View File

@ -1,7 +1,5 @@
#pragma once
#include "config.h"
#ifdef USE_USB
#include <stdint.h>
class CemiServer;
@ -93,4 +91,3 @@ class UsbTunnelInterface
void handleBusAccessServerProtocol(ServiceIdType servId, const uint8_t* requestData, uint16_t packetLength);
void sendKnxHidReport(ProtocolIdType protId, ServiceIdType servId, uint8_t* data, uint16_t length);
};
#endif