Run clang-format and enable CI check for it (#755)
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
This commit is contained in:
@@ -15,19 +15,21 @@
|
||||
|
||||
/** @file mstptext.c Text mapping functions for BACnet MS/TP */
|
||||
|
||||
static INDTEXT_DATA mstp_receive_state_text[] = { { MSTP_RECEIVE_STATE_IDLE,
|
||||
"IDLE" },
|
||||
static INDTEXT_DATA mstp_receive_state_text[] = {
|
||||
{ MSTP_RECEIVE_STATE_IDLE, "IDLE" },
|
||||
{ MSTP_RECEIVE_STATE_PREAMBLE, "PREAMBLE" },
|
||||
{ MSTP_RECEIVE_STATE_HEADER, "HEADER" },
|
||||
{ MSTP_RECEIVE_STATE_DATA, "DATA" }, { 0, NULL } };
|
||||
{ MSTP_RECEIVE_STATE_DATA, "DATA" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
const char *mstptext_receive_state(unsigned index)
|
||||
{
|
||||
return indtext_by_index_default(mstp_receive_state_text, index, "unknown");
|
||||
}
|
||||
|
||||
static INDTEXT_DATA mstp_master_state_text[] = { { MSTP_MASTER_STATE_INITIALIZE,
|
||||
"INITIALIZE" },
|
||||
static INDTEXT_DATA mstp_master_state_text[] = {
|
||||
{ MSTP_MASTER_STATE_INITIALIZE, "INITIALIZE" },
|
||||
{ MSTP_MASTER_STATE_IDLE, "IDLE" },
|
||||
{ MSTP_MASTER_STATE_USE_TOKEN, "USE_TOKEN" },
|
||||
{ MSTP_MASTER_STATE_WAIT_FOR_REPLY, "WAIT_FOR_REPLY" },
|
||||
@@ -36,32 +38,37 @@ static INDTEXT_DATA mstp_master_state_text[] = { { MSTP_MASTER_STATE_INITIALIZE,
|
||||
{ MSTP_MASTER_STATE_NO_TOKEN, "NO_TOKEN" },
|
||||
{ MSTP_MASTER_STATE_POLL_FOR_MASTER, "POLL_FOR_MASTER" },
|
||||
{ MSTP_MASTER_STATE_ANSWER_DATA_REQUEST, "ANSWER_DATA_REQUEST" },
|
||||
{ 0, NULL } };
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
const char *mstptext_master_state(unsigned index)
|
||||
{
|
||||
return indtext_by_index_default(mstp_master_state_text, index, "unknown");
|
||||
}
|
||||
|
||||
static INDTEXT_DATA mstp_frame_type_text[] = { { FRAME_TYPE_TOKEN, "TOKEN" },
|
||||
static INDTEXT_DATA mstp_frame_type_text[] = {
|
||||
{ FRAME_TYPE_TOKEN, "TOKEN" },
|
||||
{ FRAME_TYPE_POLL_FOR_MASTER, "POLL_FOR_MASTER" },
|
||||
{ FRAME_TYPE_REPLY_TO_POLL_FOR_MASTER, "REPLY_TO_POLL_FOR_MASTER" },
|
||||
{ FRAME_TYPE_TEST_REQUEST, "TEST_REQUEST" },
|
||||
{ FRAME_TYPE_TEST_RESPONSE, "TEST_RESPONSE" },
|
||||
{ FRAME_TYPE_BACNET_DATA_EXPECTING_REPLY, "BACNET_DATA_EXPECTING_REPLY" },
|
||||
{ FRAME_TYPE_BACNET_DATA_NOT_EXPECTING_REPLY,
|
||||
"BACNET_DATA_NOT_EXPECTING_REPLY" },
|
||||
"BACNET_DATA_NOT_EXPECTING_REPLY" },
|
||||
{ FRAME_TYPE_REPLY_POSTPONED, "REPLY_POSTPONED" },
|
||||
{ FRAME_TYPE_BACNET_EXTENDED_DATA_EXPECTING_REPLY,
|
||||
"BACNET_EXTENDED_DATA_EXPECTING_REPLY" },
|
||||
"BACNET_EXTENDED_DATA_EXPECTING_REPLY" },
|
||||
{ FRAME_TYPE_BACNET_EXTENDED_DATA_NOT_EXPECTING_REPLY,
|
||||
"BACNET_EXTENDED_DATA_NOT_EXPECTING_REPLY" },
|
||||
{ FRAME_TYPE_IPV6_ENCAPSULATION, "IPV6_ENCAPSULATION" }, { 0, NULL } };
|
||||
"BACNET_EXTENDED_DATA_NOT_EXPECTING_REPLY" },
|
||||
{ FRAME_TYPE_IPV6_ENCAPSULATION, "IPV6_ENCAPSULATION" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
const char *mstptext_frame_type(unsigned index)
|
||||
{
|
||||
return indtext_by_index_split_default(mstp_frame_type_text, index,
|
||||
FRAME_TYPE_PROPRIETARY_MIN, "UNKNOWN", "PROPRIETARY");
|
||||
return indtext_by_index_split_default(
|
||||
mstp_frame_type_text, index, FRAME_TYPE_PROPRIETARY_MIN, "UNKNOWN",
|
||||
"PROPRIETARY");
|
||||
}
|
||||
|
||||
static INDTEXT_DATA mstp_zero_config_state_text[] = {
|
||||
@@ -72,9 +79,10 @@ static INDTEXT_DATA mstp_zero_config_state_text[] = {
|
||||
{ MSTP_ZERO_CONFIG_STATE_CONFIRM, "CONFIRM" },
|
||||
{ MSTP_ZERO_CONFIG_STATE_USE, "USE" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
};
|
||||
|
||||
const char *mstptext_zero_config_state(unsigned index)
|
||||
{
|
||||
return indtext_by_index_default(mstp_zero_config_state_text, index, "unknown");
|
||||
return indtext_by_index_default(
|
||||
mstp_zero_config_state_text, index, "unknown");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user