mirror of
https://github.com/thelsing/knx.git
synced 2025-08-22 13:46:21 +02:00
move comment
This commit is contained in:
parent
7bedb0e672
commit
2793813d4d
@ -8,6 +8,13 @@
|
||||
#include "callback_property.h"
|
||||
#include "function_property.h"
|
||||
|
||||
// Filter Table Realization Type 3
|
||||
// The Filter Table Realisation Type 3 shall be organised as a memory mapped bit-field of
|
||||
// 65536 bits and thus 8 192 octets. Each bit shall uniquely correspond to one Group Address.
|
||||
// The full 16 bit KNX GA encoding range shall be supported.
|
||||
//
|
||||
// octet_address = GA_value div 8
|
||||
// bit_position = GA_value mod 8
|
||||
static constexpr uint16_t kFilterTableSize = 65536 / 8; // Each group address is represented by one bit
|
||||
|
||||
enum RouteTableServices
|
||||
@ -242,14 +249,6 @@ void RouterObject::functionRouteTableControl(bool isCommand, uint8_t* data, uint
|
||||
{
|
||||
RouteTableServices srvId = (RouteTableServices) data[1];
|
||||
|
||||
// Filter Table Realization Type 3
|
||||
// The Filter Table Realisation Type 3 shall be organised as a memory mapped bit-field of
|
||||
// 65536 bits and thus 8 192 octets. Each bit shall uniquely correspond to one Group Address.
|
||||
// The full 16 bit KNX GA encoding range shall be supported.
|
||||
//
|
||||
// octet_address = GA_value div 8
|
||||
// bit_position = GA_value mod 8
|
||||
|
||||
if (isCommand)
|
||||
{
|
||||
switch(srvId)
|
||||
|
Loading…
Reference in New Issue
Block a user