mirror of
https://github.com/thelsing/knx.git
synced 2025-02-18 00:15:28 +01:00
no more warnings
This commit is contained in:
parent
7c85635183
commit
5293dd8894
@ -1,6 +1,7 @@
|
||||
cmake_policy(SET CMP0048 NEW)
|
||||
project(knx VERSION 1.4)
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(knx VERSION 1.5)
|
||||
|
||||
|
||||
add_subdirectory(examples/knx-linux)
|
||||
add_subdirectory(examples/knx-linux-coupler)
|
||||
|
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(knx-linux-coupler VERSION 1.4)
|
||||
project(knx-linux-coupler VERSION 1.5)
|
||||
set(LIBRARIES_FROM_REFERENCES "")
|
||||
|
||||
set(SOURCES
|
||||
|
@ -62,8 +62,6 @@ int FdskCalculator::toBase32(uint8_t* in, long length, uint8_t*& out, bool usePa
|
||||
char standardPaddingChar = '=';
|
||||
|
||||
int result = 0;
|
||||
int count = 0;
|
||||
int bufSize = 8;
|
||||
int index = 0;
|
||||
int size = 0; // size of temporary array
|
||||
uint8_t* temp = nullptr;
|
||||
|
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(knx-linux VERSION 1.4)
|
||||
project(knx-linux VERSION 1.5)
|
||||
set(LIBRARIES_FROM_REFERENCES "")
|
||||
|
||||
set(SOURCES
|
||||
|
@ -62,8 +62,6 @@ int FdskCalculator::toBase32(uint8_t* in, long length, uint8_t*& out, bool usePa
|
||||
char standardPaddingChar = '=';
|
||||
|
||||
int result = 0;
|
||||
int count = 0;
|
||||
int bufSize = 8;
|
||||
int index = 0;
|
||||
int size = 0; // size of temporary array
|
||||
uint8_t* temp = nullptr;
|
||||
|
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(knx VERSION 1.4)
|
||||
project(knx VERSION 1.5)
|
||||
|
||||
add_subdirectory(pybind11)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "knx",
|
||||
"version": "1.2.0",
|
||||
"version": "1.5.0",
|
||||
"dependencies": {
|
||||
},
|
||||
"description": "knx stack",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=knx
|
||||
version=1.2.0
|
||||
version=1.5.0
|
||||
author=Thomas Kunze, et. al.
|
||||
maintainer=Thomas Kunze
|
||||
sentence=knx stack
|
||||
|
@ -9,9 +9,8 @@
|
||||
using namespace std;
|
||||
|
||||
Bau07B0::Bau07B0(Platform& platform)
|
||||
: BauSystemBDevice(platform),
|
||||
_dlLayer(_deviceObj, _netLayer.getInterface(), _platform, *this, (ITpUartCallBacks&) *this, (DataLinkLayerCallbacks*) this),
|
||||
DataLinkLayerCallbacks()
|
||||
: BauSystemBDevice(platform), DataLinkLayerCallbacks(),
|
||||
_dlLayer(_deviceObj, _netLayer.getInterface(), _platform, *this, (ITpUartCallBacks&) *this, (DataLinkLayerCallbacks*) this)
|
||||
#ifdef USE_CEMI_SERVER
|
||||
, _cemiServer(*this)
|
||||
#endif
|
||||
|
@ -14,15 +14,13 @@ implement PID_COUPLER_SERVICES_CONTROL 03_05_01 4.4.7
|
||||
*/
|
||||
|
||||
Bau091A::Bau091A(Platform& platform)
|
||||
: BauSystemBCoupler(platform),
|
||||
: BauSystemBCoupler(platform), DataLinkLayerCallbacks(),
|
||||
_routerObj(memory(), 0x200, 0x2000), // the Filtertable of 0x091A IP Routers is fixed at 0x200 and 0x2000 long
|
||||
_ipParameters(_deviceObj, platform),
|
||||
_dlLayerPrimary(_deviceObj, _ipParameters, _netLayer.getPrimaryInterface(), _platform, *this, (DataLinkLayerCallbacks*) this),
|
||||
_dlLayerSecondary(_deviceObj, _netLayer.getSecondaryInterface(), platform, *this, (ITpUartCallBacks&) *this, (DataLinkLayerCallbacks*) this),
|
||||
DataLinkLayerCallbacks()
|
||||
_dlLayerSecondary(_deviceObj, _netLayer.getSecondaryInterface(), platform, *this, (ITpUartCallBacks&) *this, (DataLinkLayerCallbacks*) this)
|
||||
#ifdef USE_CEMI_SERVER
|
||||
,
|
||||
_cemiServer(*this)
|
||||
, _cemiServer(*this)
|
||||
#endif
|
||||
{
|
||||
// Before accessing anything of the router object they have to be initialized according to the used medium
|
||||
|
@ -1069,7 +1069,7 @@ bool IpDataLinkLayer::isSendLimitReached()
|
||||
uint32_t timeBaseDiff = _frameCountTimeBase - curTime;
|
||||
if(timeBaseDiff > 10)
|
||||
timeBaseDiff = 10;
|
||||
for(int i = 0; i < timeBaseDiff ; i++)
|
||||
for(uint32_t i = 0; i < timeBaseDiff ; i++)
|
||||
{
|
||||
_frameCountBase++;
|
||||
_frameCountBase = _frameCountBase % 10;
|
||||
|
@ -659,7 +659,7 @@ void TpUartDataLinkLayer::requestConfig()
|
||||
_platform.writeUart(0x0); // dummy, see NCN5120 datasheet
|
||||
#else
|
||||
_platform.writeUart(U_MXRSTCNT);
|
||||
_platform.writeUart(((_repetitions & 0xF0) << 1) || (_repetitions & 0x0F));
|
||||
_platform.writeUart(((_repetitions & 0xF0) << 1) | (_repetitions & 0x0F));
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user