diff --git a/src/bacnet/arf.h b/src/bacnet/arf.h index 25a9cfa3..73c5ff63 100644 --- a/src/bacnet/arf.h +++ b/src/bacnet/arf.h @@ -2,7 +2,7 @@ * @file * @brief BACnet AtomicReadFile service structures, codecs, and handlers. * @author Steve Karg - * @date 2007 + * @date 2013 * @copyright SPDX-License-Identifier: MIT */ #ifndef BACNET_ATOMIC_READ_FILE_H diff --git a/src/bacnet/datalink/bsc/bsc-socket.h b/src/bacnet/datalink/bsc/bsc-socket.h index c59683fc..84cf8c5a 100644 --- a/src/bacnet/datalink/bsc/bsc-socket.h +++ b/src/bacnet/datalink/bsc/bsc-socket.h @@ -232,7 +232,7 @@ void bsc_deinit_ctx(BSC_SOCKET_CTX *ctx); * * @param ctx - socket context. * @param c - BACNet socket descriptor . - * @param url - url to connect to. For example: wss://legrand.com:8080. + * @param url - url to connect to. For example: wss://example.com:8080. * * @return error code from BSC_SC_RET enum. * The following error codes can be returned: diff --git a/src/bacnet/datalink/bsc/websocket.h b/src/bacnet/datalink/bsc/websocket.h index a2684761..a0a45f8f 100644 --- a/src/bacnet/datalink/bsc/websocket.h +++ b/src/bacnet/datalink/bsc/websocket.h @@ -147,7 +147,7 @@ typedef void (*BSC_WEBSOCKET_SRV_DISPATCH)( * @param type - type of BACNet/SC connection, check * BSC_WEBSOCKET_CONNECTION_TYPE enum. According BACNet standard * different type of connections require different websocket protocols. - * @param url - BACNet/SC server URL. For example: wss://legrand.com:8080. + * @param url - BACNet/SC server URL. For example: wss://example.com:8080. * @param ca_cert - pointer to certificate authority (CA) cert in PEM or DER * format. * @param ca_cert_size - size in bytes of CA cert. diff --git a/test/bacnet/abort/src/main.c b/test/bacnet/abort/src/main.c index f0c3ff9a..7d492d61 100644 --- a/test/bacnet/abort/src/main.c +++ b/test/bacnet/abort/src/main.c @@ -1,13 +1,9 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - /* @file - * @brief test BACnet integer encode/decode APIs + * @brief test BACnet Abort message encode/decode APIs + * @date 2007 + * @author Steve Karg + * @copyright SPDX-License-Identifier: MIT */ - #include #include diff --git a/test/bacnet/arf/src/main.c b/test/bacnet/arf/src/main.c index 433c2a19..d60d0bfb 100644 --- a/test/bacnet/arf/src/main.c +++ b/test/bacnet/arf/src/main.c @@ -1,13 +1,9 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - /* @file - * @brief test BACnet integer encode/decode APIs + * @brief test BACnet AtomicReadFile service encode/decode APIs + * @date 2007 + * @author Steve Karg + * @copyright SPDX-License-Identifier: MIT */ - #include #include diff --git a/test/bacnet/awf/src/main.c b/test/bacnet/awf/src/main.c index 5a242e87..39d0c0a2 100644 --- a/test/bacnet/awf/src/main.c +++ b/test/bacnet/awf/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief BACnet AtomicWriteFile service structures, codecs, and handlers. + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/bacaddr/src/main.c b/test/bacnet/bacaddr/src/main.c index 94147780..29a47858 100644 --- a/test/bacnet/bacaddr/src/main.c +++ b/test/bacnet/bacaddr/src/main.c @@ -3,8 +3,7 @@ * @brief Unit test for BACNET_ADDRESS copy, init, compare * @author Steve Karg * @date January 2023 - * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/bacapp/src/main.c b/test/bacnet/bacapp/src/main.c index 8ad8f614..8b313ad5 100644 --- a/test/bacnet/bacapp/src/main.c +++ b/test/bacnet/bacapp/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief BACnet Application encoding and decoding API testing + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/bacdcode/src/main.c b/test/bacnet/bacdcode/src/main.c index d73071b3..1fd49c92 100644 --- a/test/bacnet/bacdcode/src/main.c +++ b/test/bacnet/bacdcode/src/main.c @@ -1,11 +1,9 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file - * @brief test BACnet integer encode/decode APIs +/** + * @file + * @brief BACnet primitive value encoding and decoding API testing + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ #include #include /* For isprint */ diff --git a/test/bacnet/bacdest/src/main.c b/test/bacnet/bacdest/src/main.c index d4f651a6..afbfe6ef 100644 --- a/test/bacnet/bacdest/src/main.c +++ b/test/bacnet/bacdest/src/main.c @@ -3,8 +3,7 @@ * @brief Unit test for BACnetDestination encode and decode * @author Steve Karg * @date December 2022 - * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/bacdevobjpropref/src/main.c b/test/bacnet/bacdevobjpropref/src/main.c index 4ae7ee28..9a3ab60a 100644 --- a/test/bacnet/bacdevobjpropref/src/main.c +++ b/test/bacnet/bacdevobjpropref/src/main.c @@ -7,7 +7,7 @@ * @date November 2023 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/bacerror/src/main.c b/test/bacnet/bacerror/src/main.c index 6a6e405e..bb99024c 100644 --- a/test/bacnet/bacerror/src/main.c +++ b/test/bacnet/bacerror/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief BACnet Error message encoding and decoding API testing + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/bacint/src/main.c b/test/bacnet/bacint/src/main.c index f64193ca..712fbc3c 100644 --- a/test/bacnet/bacint/src/main.c +++ b/test/bacnet/bacint/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test BACnet integer encode/decode APIs + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - #include #include diff --git a/test/bacnet/bacpropstates/src/main.c b/test/bacnet/bacpropstates/src/main.c index 4f5d4f30..b6763c39 100644 --- a/test/bacnet/bacpropstates/src/main.c +++ b/test/bacnet/bacpropstates/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnetPropertyStates encode/decode APIs + * @author Steve Karg + * @date 2008 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/bacreal/main.c b/test/bacnet/bacreal/main.c index 1fbde80a..38db4ea1 100644 --- a/test/bacnet/bacreal/main.c +++ b/test/bacnet/bacreal/main.c @@ -6,7 +6,7 @@ * * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/bacreal/src/main.c b/test/bacnet/bacreal/src/main.c index 4ce9817c..47ee541c 100644 --- a/test/bacnet/bacreal/src/main.c +++ b/test/bacnet/bacreal/src/main.c @@ -1,11 +1,9 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test BACnet real value encode/decode APIs + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/bacstr/src/main.c b/test/bacnet/bacstr/src/main.c index f10a02d3..bf70d75c 100644 --- a/test/bacnet/bacstr/src/main.c +++ b/test/bacnet/bacstr/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet CharacterString, BitString, and OctetString APIs + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/bbmd6/src/main.c b/test/bacnet/basic/bbmd6/src/main.c index a6e9c12f..c8d00c72 100644 --- a/test/bacnet/basic/bbmd6/src/main.c +++ b/test/bacnet/basic/bbmd6/src/main.c @@ -4,7 +4,7 @@ * @date April 2020 * @brief Test file for a basic BBMD for BVLC IPv6 handler * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include /* for standard i/o, like printing */ #include /* for standard integer types uint8_t etc. */ diff --git a/test/bacnet/basic/binding/address/src/main.c b/test/bacnet/basic/binding/address/src/main.c index 6d2028ec..fd1d652e 100644 --- a/test/bacnet/basic/binding/address/src/main.c +++ b/test/bacnet/basic/binding/address/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet address cache APIs + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/acc/src/main.c b/test/bacnet/basic/object/acc/src/main.c index ce0532da..0a974af7 100644 --- a/test/bacnet/basic/object/acc/src/main.c +++ b/test/bacnet/basic/object/acc/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Accumulator object APIs + * @author Steve Karg + * @date 2017 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/access_credential/src/main.c b/test/bacnet/basic/object/access_credential/src/main.c index 105a6b2f..a4fe0d05 100644 --- a/test/bacnet/basic/object/access_credential/src/main.c +++ b/test/bacnet/basic/object/access_credential/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Access Credential object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/object/access_door/src/main.c b/test/bacnet/basic/object/access_door/src/main.c index 6b8e6493..6c667b3d 100644 --- a/test/bacnet/basic/object/access_door/src/main.c +++ b/test/bacnet/basic/object/access_door/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test BACnet access_door object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - #include #include diff --git a/test/bacnet/basic/object/access_point/src/main.c b/test/bacnet/basic/object/access_point/src/main.c index eeaf5cad..9bc366d4 100644 --- a/test/bacnet/basic/object/access_point/src/main.c +++ b/test/bacnet/basic/object/access_point/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Access Point object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/access_rights/src/main.c b/test/bacnet/basic/object/access_rights/src/main.c index 893b5637..f6d7af28 100644 --- a/test/bacnet/basic/object/access_rights/src/main.c +++ b/test/bacnet/basic/object/access_rights/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Access Rights object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/access_user/src/main.c b/test/bacnet/basic/object/access_user/src/main.c index 9dd1ace0..b3f23509 100644 --- a/test/bacnet/basic/object/access_user/src/main.c +++ b/test/bacnet/basic/object/access_user/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Access User object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/object/access_zone/src/main.c b/test/bacnet/basic/object/access_zone/src/main.c index 3c23ec0b..7b159b68 100644 --- a/test/bacnet/basic/object/access_zone/src/main.c +++ b/test/bacnet/basic/object/access_zone/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Access Zone object APIs + * @author Steve Karg + * @date 2015 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/object/ai/src/main.c b/test/bacnet/basic/object/ai/src/main.c index 9d9ba69a..5021a558 100644 --- a/test/bacnet/basic/object/ai/src/main.c +++ b/test/bacnet/basic/object/ai/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/ai/stubs.c b/test/bacnet/basic/object/ai/stubs.c index 3b2aa854..45c77be7 100644 --- a/test/bacnet/basic/object/ai/stubs.c +++ b/test/bacnet/basic/object/ai/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/ao/src/main.c b/test/bacnet/basic/object/ao/src/main.c index ad69fc21..6a280767 100644 --- a/test/bacnet/basic/object/ao/src/main.c +++ b/test/bacnet/basic/object/ao/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/auditlog/src/main.c b/test/bacnet/basic/object/auditlog/src/main.c index f225de3d..7a58ad77 100644 --- a/test/bacnet/basic/object/auditlog/src/main.c +++ b/test/bacnet/basic/object/auditlog/src/main.c @@ -1,13 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet AuditLog object APIs + * @author Steve Karg + * @author Mikhail Antropov + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet auditlog APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/av/src/main.c b/test/bacnet/basic/object/av/src/main.c index 46e28851..01b6e389 100644 --- a/test/bacnet/basic/object/av/src/main.c +++ b/test/bacnet/basic/object/av/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/av/stubs.c b/test/bacnet/basic/object/av/stubs.c index 3b2aa854..45c77be7 100644 --- a/test/bacnet/basic/object/av/stubs.c +++ b/test/bacnet/basic/object/av/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/bacfile/src/main.c b/test/bacnet/basic/object/bacfile/src/main.c index 996df25d..48163320 100644 --- a/test/bacnet/basic/object/bacfile/src/main.c +++ b/test/bacnet/basic/object/bacfile/src/main.c @@ -7,7 +7,7 @@ * * Copyright (C) 2022 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/bi/src/main.c b/test/bacnet/basic/object/bi/src/main.c index e095b194..2385aa2a 100644 --- a/test/bacnet/basic/object/bi/src/main.c +++ b/test/bacnet/basic/object/bi/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/bi/stubs.c b/test/bacnet/basic/object/bi/stubs.c index 3b2aa854..45c77be7 100644 --- a/test/bacnet/basic/object/bi/stubs.c +++ b/test/bacnet/basic/object/bi/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/blo/src/main.c b/test/bacnet/basic/object/blo/src/main.c index 90aa31c3..76d0d66e 100644 --- a/test/bacnet/basic/object/blo/src/main.c +++ b/test/bacnet/basic/object/blo/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date September 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/bo/src/main.c b/test/bacnet/basic/object/bo/src/main.c index f1424e8e..31eaba64 100644 --- a/test/bacnet/basic/object/bo/src/main.c +++ b/test/bacnet/basic/object/bo/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/bv/src/main.c b/test/bacnet/basic/object/bv/src/main.c index 74817cbd..77093fb1 100644 --- a/test/bacnet/basic/object/bv/src/main.c +++ b/test/bacnet/basic/object/bv/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Binary Value object APIs + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/bv/stubs.c b/test/bacnet/basic/object/bv/stubs.c index 3b2aa854..45c77be7 100644 --- a/test/bacnet/basic/object/bv/stubs.c +++ b/test/bacnet/basic/object/bv/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/calendar/src/main.c b/test/bacnet/basic/object/calendar/src/main.c index e6717162..7f0dc5d2 100644 --- a/test/bacnet/basic/object/calendar/src/main.c +++ b/test/bacnet/basic/object/calendar/src/main.c @@ -5,7 +5,7 @@ * @author Steve Karg * @date June 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/calendar/stubs.c b/test/bacnet/basic/object/calendar/stubs.c index feef7194..0a41666f 100644 --- a/test/bacnet/basic/object/calendar/stubs.c +++ b/test/bacnet/basic/object/calendar/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/channel/src/main.c b/test/bacnet/basic/object/channel/src/main.c index 7068e37a..1bbc2eb0 100644 --- a/test/bacnet/basic/object/channel/src/main.c +++ b/test/bacnet/basic/object/channel/src/main.c @@ -5,7 +5,7 @@ * @date July 2023 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/color_object/src/main.c b/test/bacnet/basic/object/color_object/src/main.c index c7ffda96..a30742a0 100644 --- a/test/bacnet/basic/object/color_object/src/main.c +++ b/test/bacnet/basic/object/color_object/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date June 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/color_temperature/src/main.c b/test/bacnet/basic/object/color_temperature/src/main.c index 5f0dd292..0c0757db 100644 --- a/test/bacnet/basic/object/color_temperature/src/main.c +++ b/test/bacnet/basic/object/color_temperature/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date June 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/command/src/main.c b/test/bacnet/basic/object/command/src/main.c index d724dde5..b9f77839 100644 --- a/test/bacnet/basic/object/command/src/main.c +++ b/test/bacnet/basic/object/command/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/credential_data_input/src/main.c b/test/bacnet/basic/object/credential_data_input/src/main.c index 98b3cce6..a9a19aad 100644 --- a/test/bacnet/basic/object/credential_data_input/src/main.c +++ b/test/bacnet/basic/object/credential_data_input/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date February 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/csv/src/main.c b/test/bacnet/basic/object/csv/src/main.c index 96d150ae..f8579842 100644 --- a/test/bacnet/basic/object/csv/src/main.c +++ b/test/bacnet/basic/object/csv/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/basic/object/device/src/main.c b/test/bacnet/basic/object/device/src/main.c index cd52b1a3..81bff07f 100644 --- a/test/bacnet/basic/object/device/src/main.c +++ b/test/bacnet/basic/object/device/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Device object APIs + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/device/stubs.c b/test/bacnet/basic/object/device/stubs.c index f6f84fea..69912820 100644 --- a/test/bacnet/basic/object/device/stubs.c +++ b/test/bacnet/basic/object/device/stubs.c @@ -2,7 +2,7 @@ * * Copyright (C) 2006 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT * *********************************************************************/ diff --git a/test/bacnet/basic/object/iv/src/main.c b/test/bacnet/basic/object/iv/src/main.c index 52708362..f8cd8976 100644 --- a/test/bacnet/basic/object/iv/src/main.c +++ b/test/bacnet/basic/object/iv/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/basic/object/lc/src/main.c b/test/bacnet/basic/object/lc/src/main.c index 1a9984a8..0a7f041d 100644 --- a/test/bacnet/basic/object/lc/src/main.c +++ b/test/bacnet/basic/object/lc/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test BACnet load control object + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/basic/object/lo/src/main.c b/test/bacnet/basic/object/lo/src/main.c index 89a80432..b2925c30 100644 --- a/test/bacnet/basic/object/lo/src/main.c +++ b/test/bacnet/basic/object/lo/src/main.c @@ -1,7 +1,7 @@ /* * Copyright (c) 2020 Legrand North America, LLC. * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ /* @file diff --git a/test/bacnet/basic/object/lsp/src/main.c b/test/bacnet/basic/object/lsp/src/main.c index f922bb6a..0946c773 100644 --- a/test/bacnet/basic/object/lsp/src/main.c +++ b/test/bacnet/basic/object/lsp/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Life Safety Point object APIs + * @author Steve Karg + * @date 2005 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/lsz/src/main.c b/test/bacnet/basic/object/lsz/src/main.c index 8450b08d..c0dbf688 100644 --- a/test/bacnet/basic/object/lsz/src/main.c +++ b/test/bacnet/basic/object/lsz/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Life Safety Zone object APIs + * @author Steve Karg + * @date 2024 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/ms-input/src/main.c b/test/bacnet/basic/object/ms-input/src/main.c index d3f1bbea..a0f8c37c 100644 --- a/test/bacnet/basic/object/ms-input/src/main.c +++ b/test/bacnet/basic/object/ms-input/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/mso/src/main.c b/test/bacnet/basic/object/mso/src/main.c index cbd38680..14b48956 100644 --- a/test/bacnet/basic/object/mso/src/main.c +++ b/test/bacnet/basic/object/mso/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/msv/src/main.c b/test/bacnet/basic/object/msv/src/main.c index 4233a147..f0917497 100644 --- a/test/bacnet/basic/object/msv/src/main.c +++ b/test/bacnet/basic/object/msv/src/main.c @@ -5,7 +5,7 @@ * @date April 2024 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/nc/src/main.c b/test/bacnet/basic/object/nc/src/main.c index 36705d1e..69078c29 100644 --- a/test/bacnet/basic/object/nc/src/main.c +++ b/test/bacnet/basic/object/nc/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/nc/stubs.c b/test/bacnet/basic/object/nc/stubs.c index 9630a933..f43f038f 100644 --- a/test/bacnet/basic/object/nc/stubs.c +++ b/test/bacnet/basic/object/nc/stubs.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/netport/src/main.c b/test/bacnet/basic/object/netport/src/main.c index 48ab17d1..51004d6e 100644 --- a/test/bacnet/basic/object/netport/src/main.c +++ b/test/bacnet/basic/object/netport/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date February 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/objects/main.c b/test/bacnet/basic/object/objects/main.c index ee4a769f..621f2832 100644 --- a/test/bacnet/basic/object/objects/main.c +++ b/test/bacnet/basic/object/objects/main.c @@ -6,7 +6,7 @@ * * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/objects/src/main.c b/test/bacnet/basic/object/objects/src/main.c index 8811aecc..674c319a 100644 --- a/test/bacnet/basic/object/objects/src/main.c +++ b/test/bacnet/basic/object/objects/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet objects container APIs + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/object/osv/src/main.c b/test/bacnet/basic/object/osv/src/main.c index b31cf335..f5d68dc6 100644 --- a/test/bacnet/basic/object/osv/src/main.c +++ b/test/bacnet/basic/object/osv/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/piv/src/main.c b/test/bacnet/basic/object/piv/src/main.c index 48b4dc32..92b840de 100644 --- a/test/bacnet/basic/object/piv/src/main.c +++ b/test/bacnet/basic/object/piv/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/basic/object/program/src/main.c b/test/bacnet/basic/object/program/src/main.c index 5f678aee..b87d0ee5 100644 --- a/test/bacnet/basic/object/program/src/main.c +++ b/test/bacnet/basic/object/program/src/main.c @@ -5,7 +5,7 @@ * @date March 2025 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/schedule/src/main.c b/test/bacnet/basic/object/schedule/src/main.c index bb957156..9bd41f42 100644 --- a/test/bacnet/basic/object/schedule/src/main.c +++ b/test/bacnet/basic/object/schedule/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/basic/object/structured_view/src/main.c b/test/bacnet/basic/object/structured_view/src/main.c index 3529047a..b9b13c45 100644 --- a/test/bacnet/basic/object/structured_view/src/main.c +++ b/test/bacnet/basic/object/structured_view/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date May 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/test/apdu_mock.c b/test/bacnet/basic/object/test/apdu_mock.c index 92463386..5c3a1760 100644 --- a/test/bacnet/basic/object/test/apdu_mock.c +++ b/test/bacnet/basic/object/test/apdu_mock.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date January 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/test/datetime_local.c b/test/bacnet/basic/object/test/datetime_local.c index bdc1f432..b58b186b 100644 --- a/test/bacnet/basic/object/test/datetime_local.c +++ b/test/bacnet/basic/object/test/datetime_local.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/test/device_mock.c b/test/bacnet/basic/object/test/device_mock.c index 5248c2e9..8f7852a4 100644 --- a/test/bacnet/basic/object/test/device_mock.c +++ b/test/bacnet/basic/object/test/device_mock.c @@ -4,7 +4,7 @@ * @author Mikhail Antropov * @date July 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/test/property_test.c b/test/bacnet/basic/object/test/property_test.c index 66ed54dd..aa59132d 100644 --- a/test/bacnet/basic/object/test/property_test.c +++ b/test/bacnet/basic/object/test/property_test.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date February 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/test/property_test.h b/test/bacnet/basic/object/test/property_test.h index 2b2d8b8a..ca9fcc63 100644 --- a/test/bacnet/basic/object/test/property_test.h +++ b/test/bacnet/basic/object/test/property_test.h @@ -4,7 +4,7 @@ * @author Steve Karg * @date February 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #ifndef _BACNET_PROPERTY_TEST_H_ #define _BACNET_PROPERTY_TEST_H_ diff --git a/test/bacnet/basic/object/test/tsm_mock.c b/test/bacnet/basic/object/test/tsm_mock.c index b984d403..83fb8f1b 100644 --- a/test/bacnet/basic/object/test/tsm_mock.c +++ b/test/bacnet/basic/object/test/tsm_mock.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date January 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/time_value/src/main.c b/test/bacnet/basic/object/time_value/src/main.c index d8161877..1f1e3ebf 100644 --- a/test/bacnet/basic/object/time_value/src/main.c +++ b/test/bacnet/basic/object/time_value/src/main.c @@ -5,7 +5,7 @@ * @author Steve Karg * @date June 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/object/trendlog/src/main.c b/test/bacnet/basic/object/trendlog/src/main.c index 7ce56dd1..0763a8b4 100644 --- a/test/bacnet/basic/object/trendlog/src/main.c +++ b/test/bacnet/basic/object/trendlog/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date July 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/basic/sys/fifo/src/main.c b/test/bacnet/basic/sys/fifo/src/main.c index e641b06f..b7b3678b 100644 --- a/test/bacnet/basic/sys/fifo/src/main.c +++ b/test/bacnet/basic/sys/fifo/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet FIFO container APIs + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/sys/filename/src/main.c b/test/bacnet/basic/sys/filename/src/main.c index 9f824c8b..75c3680e 100644 --- a/test/bacnet/basic/sys/filename/src/main.c +++ b/test/bacnet/basic/sys/filename/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test POSIX filename API + * @author Steve Karg + * @date 2007 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/sys/keylist/src/main.c b/test/bacnet/basic/sys/keylist/src/main.c index e3d200bd..015141c7 100644 --- a/test/bacnet/basic/sys/keylist/src/main.c +++ b/test/bacnet/basic/sys/keylist/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test Key List container API + * @author Steve Karg + * @date 2003 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/basic/sys/lighting_command/src/main.c b/test/bacnet/basic/sys/lighting_command/src/main.c index 24371ea4..9a587292 100644 --- a/test/bacnet/basic/sys/lighting_command/src/main.c +++ b/test/bacnet/basic/sys/lighting_command/src/main.c @@ -6,7 +6,7 @@ * @section LICENSE * Copyright (c) 2022 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/sys/linear/src/main.c b/test/bacnet/basic/sys/linear/src/main.c index 7ebdc881..89a9d871 100644 --- a/test/bacnet/basic/sys/linear/src/main.c +++ b/test/bacnet/basic/sys/linear/src/main.c @@ -6,7 +6,7 @@ * @section LICENSE * Copyright (c) 2010 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/basic/sys/ringbuf/src/main.c b/test/bacnet/basic/sys/ringbuf/src/main.c index cce9f05c..1478563a 100644 --- a/test/bacnet/basic/sys/ringbuf/src/main.c +++ b/test/bacnet/basic/sys/ringbuf/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test Ring Buffer container API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/basic/sys/sbuf/src/main.c b/test/bacnet/basic/sys/sbuf/src/main.c index 3bdf2393..727aa0fc 100644 --- a/test/bacnet/basic/sys/sbuf/src/main.c +++ b/test/bacnet/basic/sys/sbuf/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test Static Buffer container API + * @author Steve Karg + * @date 2005 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/cov/src/main.c b/test/bacnet/cov/src/main.c index fa4c95eb..c530d4b8 100644 --- a/test/bacnet/cov/src/main.c +++ b/test/bacnet/cov/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Change-Of-Value service encoding and decoding API + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include // #include #include diff --git a/test/bacnet/create_object/src/main.c b/test/bacnet/create_object/src/main.c index e50f0f80..25131e75 100644 --- a/test/bacnet/create_object/src/main.c +++ b/test/bacnet/create_object/src/main.c @@ -5,7 +5,7 @@ * @date August 2023 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/datalink/automac/src/main.c b/test/bacnet/datalink/automac/src/main.c index 9b55dbc7..c13b46a2 100644 --- a/test/bacnet/datalink/automac/src/main.c +++ b/test/bacnet/datalink/automac/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date 2023-June * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/datalink/bsc-datalink/src/main.c b/test/bacnet/datalink/bsc-datalink/src/main.c index 5023845f..13b2a711 100644 --- a/test/bacnet/datalink/bsc-datalink/src/main.c +++ b/test/bacnet/datalink/bsc-datalink/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test of bsc-socket interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datalink/bsc-node/src/main.c b/test/bacnet/datalink/bsc-node/src/main.c index 232f954b..c901eb13 100644 --- a/test/bacnet/datalink/bsc-node/src/main.c +++ b/test/bacnet/datalink/bsc-node/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC Node interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-socket interface - */ - #include #include #include diff --git a/test/bacnet/datalink/bsc-socket/src/main.c b/test/bacnet/datalink/bsc-socket/src/main.c index e9d4fa09..01a916ea 100644 --- a/test/bacnet/datalink/bsc-socket/src/main.c +++ b/test/bacnet/datalink/bsc-socket/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC Socket interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-socket interface - */ - #include #include #include diff --git a/test/bacnet/datalink/bvlc/src/main.c b/test/bacnet/datalink/bvlc/src/main.c index 34a03e08..4235574a 100644 --- a/test/bacnet/datalink/bvlc/src/main.c +++ b/test/bacnet/datalink/bvlc/src/main.c @@ -1,14 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet BVLC datalink encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - -#include /* For calloc() */ +#include #include #include #include diff --git a/test/bacnet/datalink/cobs/src/main.c b/test/bacnet/datalink/cobs/src/main.c index dfad9496..a8908f70 100644 --- a/test/bacnet/datalink/cobs/src/main.c +++ b/test/bacnet/datalink/cobs/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test BACnet COBS encode/decode APIs + * @author Steve Karg + * @date 2014 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datalink/crc/src/main.c b/test/bacnet/datalink/crc/src/main.c index 7275d1d1..15493f26 100644 --- a/test/bacnet/datalink/crc/src/main.c +++ b/test/bacnet/datalink/crc/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet CRC8, CRC16, and CRC32K datalink encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/datalink/hub-sc/src/main.c b/test/bacnet/datalink/hub-sc/src/main.c index 3d28420e..c6cbcac6 100644 --- a/test/bacnet/datalink/hub-sc/src/main.c +++ b/test/bacnet/datalink/hub-sc/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC Hub Connector + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-socket interface - */ - #include #include #include diff --git a/test/bacnet/datalink/mock/src/arcnet-mock.c b/test/bacnet/datalink/mock/src/arcnet-mock.c index e1e39f56..e1577d09 100644 --- a/test/bacnet/datalink/mock/src/arcnet-mock.c +++ b/test/bacnet/datalink/mock/src/arcnet-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the ARCNET datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include "bacnet/datalink/arcnet.h" diff --git a/test/bacnet/datalink/mock/src/bip-mock.c b/test/bacnet/datalink/mock/src/bip-mock.c index 5f022ef2..df5f9914 100644 --- a/test/bacnet/datalink/mock/src/bip-mock.c +++ b/test/bacnet/datalink/mock/src/bip-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the BACnet/IP datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include /* for standard integer types uint8_t etc. */ #include /* for the standard bool type. */ diff --git a/test/bacnet/datalink/mock/src/bip6-mock.c b/test/bacnet/datalink/mock/src/bip6-mock.c index 28874386..8b20f0d7 100644 --- a/test/bacnet/datalink/mock/src/bip6-mock.c +++ b/test/bacnet/datalink/mock/src/bip6-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the BACnet/IPv6 datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datalink/mock/src/bsc-mock.c b/test/bacnet/datalink/mock/src/bsc-mock.c index 08483b35..5ab09b3b 100644 --- a/test/bacnet/datalink/mock/src/bsc-mock.c +++ b/test/bacnet/datalink/mock/src/bsc-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the BACnet/SC datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include /* for standard integer types uint8_t etc. */ #include /* for the standard bool type. */ diff --git a/test/bacnet/datalink/mock/src/dlmstp-mock.c b/test/bacnet/datalink/mock/src/dlmstp-mock.c index dac6c754..2dc7dc0b 100644 --- a/test/bacnet/datalink/mock/src/dlmstp-mock.c +++ b/test/bacnet/datalink/mock/src/dlmstp-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the BACnet MS/TP datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datalink/mock/src/ethernet-mock.c b/test/bacnet/datalink/mock/src/ethernet-mock.c index f60a3fd2..c3e14d72 100644 --- a/test/bacnet/datalink/mock/src/ethernet-mock.c +++ b/test/bacnet/datalink/mock/src/ethernet-mock.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for the BACnet Ethernet datalink + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datalink/mock/src/main.c b/test/bacnet/datalink/mock/src/main.c index fcda4575..1060f7e8 100644 --- a/test/bacnet/datalink/mock/src/main.c +++ b/test/bacnet/datalink/mock/src/main.c @@ -1,13 +1,11 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief Mock for all the BACnet datalinks + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet datalink return codes - */ - #include /* For calloc() */ #include #include diff --git a/test/bacnet/datalink/mstp/src/main.c b/test/bacnet/datalink/mstp/src/main.c index be62803b..362fa001 100644 --- a/test/bacnet/datalink/mstp/src/main.c +++ b/test/bacnet/datalink/mstp/src/main.c @@ -3,7 +3,7 @@ * @author Steve Karg * @brief test BACnet MSTP datalink state machines * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/datalink/websockets/src/main.c b/test/bacnet/datalink/websockets/src/main.c index 654fc0f9..de7c666d 100644 --- a/test/bacnet/datalink/websockets/src/main.c +++ b/test/bacnet/datalink/websockets/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file +/** + * @file * @brief test server/client websocket interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/datetime/src/main.c b/test/bacnet/datetime/src/main.c index 6bcd4d95..6e100282 100644 --- a/test/bacnet/datetime/src/main.c +++ b/test/bacnet/datetime/src/main.c @@ -1,14 +1,10 @@ -/************************************************************************** - * - * Copyright (C) 2004 Steve Karg - * - * SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 - * - *********************************************************************/ -/* @file - * @brief test BACnet integer encode/decode APIs +/** + * @file + * @brief test BACnetDate and BACnetTime encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - #include #include #include diff --git a/test/bacnet/dcc/src/main.c b/test/bacnet/dcc/src/main.c index 0e2dac49..3fd1f747 100644 --- a/test/bacnet/dcc/src/main.c +++ b/test/bacnet/dcc/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet DeviceCommunicationControl encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/delete_object/src/main.c b/test/bacnet/delete_object/src/main.c index 84756060..8073f963 100644 --- a/test/bacnet/delete_object/src/main.c +++ b/test/bacnet/delete_object/src/main.c @@ -5,7 +5,7 @@ * @date August 2023 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/event/src/main.c b/test/bacnet/event/src/main.c index 42240620..e736ae92 100644 --- a/test/bacnet/event/src/main.c +++ b/test/bacnet/event/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnetEventNotification encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/getalarm/src/main.c b/test/bacnet/getalarm/src/main.c index b3d0ed90..fae9be8b 100644 --- a/test/bacnet/getalarm/src/main.c +++ b/test/bacnet/getalarm/src/main.c @@ -1,7 +1,7 @@ /* * Copyright (c) 2022 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ /* @file diff --git a/test/bacnet/getevent/src/main.c b/test/bacnet/getevent/src/main.c index 34464ee8..d315ad3b 100644 --- a/test/bacnet/getevent/src/main.c +++ b/test/bacnet/getevent/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet GetEvent service encoding and decoding API + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/hostnport/src/main.c b/test/bacnet/hostnport/src/main.c index 57c2589a..f7d89053 100644 --- a/test/bacnet/hostnport/src/main.c +++ b/test/bacnet/hostnport/src/main.c @@ -5,7 +5,7 @@ * @date August 2023 * @section LICENSE * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/iam/src/main.c b/test/bacnet/iam/src/main.c index 60d531c0..bf1f03ac 100644 --- a/test/bacnet/iam/src/main.c +++ b/test/bacnet/iam/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet I-Am service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/ihave/src/main.c b/test/bacnet/ihave/src/main.c index b024a0ae..3e0bfc80 100644 --- a/test/bacnet/ihave/src/main.c +++ b/test/bacnet/ihave/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet I-Have service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/include/bacport.h b/test/bacnet/include/bacport.h index 96a93f97..854fde0a 100644 --- a/test/bacnet/include/bacport.h +++ b/test/bacnet/include/bacport.h @@ -1,13 +1,11 @@ -/************************************************************************** - * - * Copyright (c) 2022 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - * - *********************************************************************/ - -/* ztest mock file */ - +/** + * @file + * @brief Mock for BACnet port file + * @author Steve Karg + * @author Greg Shue + * @date 2020 + * @copyright SPDX-License-Identifier: MIT + */ #ifndef BACPORT_H #define BACPORT_H diff --git a/test/bacnet/indtext/src/main.c b/test/bacnet/indtext/src/main.c index 3b8ae8d9..9a44dce7 100644 --- a/test/bacnet/indtext/src/main.c +++ b/test/bacnet/indtext/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test Index Text utility API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/lighting/src/main.c b/test/bacnet/lighting/src/main.c index 49da0e5a..515b68c4 100644 --- a/test/bacnet/lighting/src/main.c +++ b/test/bacnet/lighting/src/main.c @@ -1,7 +1,7 @@ /* * Copyright (c) 2020 Legrand North America, LLC. * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ /* @file diff --git a/test/bacnet/list_element/src/main.c b/test/bacnet/list_element/src/main.c index bd5d5213..947734b8 100644 --- a/test/bacnet/list_element/src/main.c +++ b/test/bacnet/list_element/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date December 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/lso/src/main.c b/test/bacnet/lso/src/main.c index ab428df2..c3556257 100644 --- a/test/bacnet/lso/src/main.c +++ b/test/bacnet/lso/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Life Safety Operation service API + * @author Steve Karg + * @date 2008 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/memcopy/src/main.c b/test/bacnet/memcopy/src/main.c index 8a7d09af..86563251 100644 --- a/test/bacnet/memcopy/src/main.c +++ b/test/bacnet/memcopy/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test memcopy utility API + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/npdu/src/main.c b/test/bacnet/npdu/src/main.c index 87f8dd0b..f235a0e3 100644 --- a/test/bacnet/npdu/src/main.c +++ b/test/bacnet/npdu/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet NPDU encoding and decoding API + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/npdu/stubs.c b/test/bacnet/npdu/stubs.c index 65688884..ed96292c 100644 --- a/test/bacnet/npdu/stubs.c +++ b/test/bacnet/npdu/stubs.c @@ -2,7 +2,7 @@ * * Copyright (C) 2006 Steve Karg * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT * *********************************************************************/ diff --git a/test/bacnet/property/src/main.c b/test/bacnet/property/src/main.c index e4bffa0e..ed9a2f47 100644 --- a/test/bacnet/property/src/main.c +++ b/test/bacnet/property/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date 2012 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/ptransfer/src/main.c b/test/bacnet/ptransfer/src/main.c index 887bb919..34a7c2b1 100644 --- a/test/bacnet/ptransfer/src/main.c +++ b/test/bacnet/ptransfer/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet PrivateTransfer services encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/rd/src/main.c b/test/bacnet/rd/src/main.c index ea9068d4..5c266f37 100644 --- a/test/bacnet/rd/src/main.c +++ b/test/bacnet/rd/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet ReinitializeDevice service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/reject/src/main.c b/test/bacnet/reject/src/main.c index 5ec684e0..ca67a56f 100644 --- a/test/bacnet/reject/src/main.c +++ b/test/bacnet/reject/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet Reject message encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/rp/src/main.c b/test/bacnet/rp/src/main.c index 19ae4112..b659068e 100644 --- a/test/bacnet/rp/src/main.c +++ b/test/bacnet/rp/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet ReadProperty service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/secure_connect/src/main.c b/test/bacnet/secure_connect/src/main.c index a71476c8..e611ca4f 100644 --- a/test/bacnet/secure_connect/src/main.c +++ b/test/bacnet/secure_connect/src/main.c @@ -5,7 +5,7 @@ * @author Ondřej Hruška * @date Aug 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/timestamp/src/main.c b/test/bacnet/timestamp/src/main.c index e62e2a9d..c267685f 100644 --- a/test/bacnet/timestamp/src/main.c +++ b/test/bacnet/timestamp/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnetTimeStamp encoding and decoding API + * @author Steve Karg + * @date 2008 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include diff --git a/test/bacnet/timesync/src/main.c b/test/bacnet/timesync/src/main.c index eecab8ea..9e8ff935 100644 --- a/test/bacnet/timesync/src/main.c +++ b/test/bacnet/timesync/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet TimeSynchronization services encoding and decoding API + * @author Steve Karg + * @date 2012 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/weeklyschedule/src/main.c b/test/bacnet/weeklyschedule/src/main.c index 2fef3a77..88c10059 100644 --- a/test/bacnet/weeklyschedule/src/main.c +++ b/test/bacnet/weeklyschedule/src/main.c @@ -4,7 +4,7 @@ * @author Ondřej Hruška * @date Aug 2022 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include diff --git a/test/bacnet/whois/src/main.c b/test/bacnet/whois/src/main.c index 21e7acc8..65b80fe7 100644 --- a/test/bacnet/whois/src/main.c +++ b/test/bacnet/whois/src/main.c @@ -1,13 +1,10 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test BACnet WhoIs service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test BACnet integer encode/decode APIs - */ - #include #include #include diff --git a/test/bacnet/wp/src/main.c b/test/bacnet/wp/src/main.c index 7cf1d4c8..1219b2ff 100644 --- a/test/bacnet/wp/src/main.c +++ b/test/bacnet/wp/src/main.c @@ -1,11 +1,9 @@ -/* - * Copyright (c) 2020 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT - */ - -/* @file - * @brief test BACnet integer encode/decode APIs +/** + * @file + * @brief test BACnet WriteProperty service encoding and decoding API + * @author Steve Karg + * @date 2004 + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/wpm/src/main.c b/test/bacnet/wpm/src/main.c index 375783b2..a17474f3 100644 --- a/test/bacnet/wpm/src/main.c +++ b/test/bacnet/wpm/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date May 2023 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/bacnet/write_group/src/main.c b/test/bacnet/write_group/src/main.c index fff7e34f..c884ea42 100644 --- a/test/bacnet/write_group/src/main.c +++ b/test/bacnet/write_group/src/main.c @@ -4,7 +4,7 @@ * @author Steve Karg * @date October 2024 * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #include #include diff --git a/test/ports/bsd/bsc_event/src/main.c b/test/ports/bsd/bsc_event/src/main.c index 19f669ac..058496c9 100644 --- a/test/ports/bsd/bsc_event/src/main.c +++ b/test/ports/bsd/bsc_event/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2022 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC event interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-event interface - */ - #include #include #include diff --git a/test/ports/linux/bsc_event/src/main.c b/test/ports/linux/bsc_event/src/main.c index 3031805d..1c1eb25b 100644 --- a/test/ports/linux/bsc_event/src/main.c +++ b/test/ports/linux/bsc_event/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2022 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC event interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-event interface - */ - #define _GNU_SOURCE #include #include diff --git a/test/ports/win32/bsc_event/src/main.c b/test/ports/win32/bsc_event/src/main.c index ad33f0c9..8b477788 100644 --- a/test/ports/win32/bsc_event/src/main.c +++ b/test/ports/win32/bsc_event/src/main.c @@ -1,13 +1,14 @@ -/* - * Copyright (c) 2022 Legrand North America, LLC. - * - * SPDX-License-Identifier: MIT +/** + * @file + * @brief test of BACnet/SC event interface + * @author Steve Karg + * @author Kirill Neznamov + * @author Mikhail Antropov + * @author Ondřej Hruška + * @author Patrick Grimm + * @date 2020 + * @copyright SPDX-License-Identifier: MIT */ - -/* @file - * @brief test of bsc-event interface - */ - #include #include #include diff --git a/test/unit/bacnet/bacerror/src/fakes/bacdcode.c b/test/unit/bacnet/bacerror/src/fakes/bacdcode.c index d8e279e1..6223b764 100644 --- a/test/unit/bacnet/bacerror/src/fakes/bacdcode.c +++ b/test/unit/bacnet/bacerror/src/fakes/bacdcode.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: Apache-2.0 +/** + * @file + * @brief fakes for BACnet Error message encoding and decoding + * @author Steve Karg + * @author Greg Shue + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - #include #include "fakes/bacdcode.h" diff --git a/test/unit/bacnet/bacerror/src/fakes/bacdcode.h b/test/unit/bacnet/bacerror/src/fakes/bacdcode.h index e31733e2..9addc04a 100644 --- a/test/unit/bacnet/bacerror/src/fakes/bacdcode.h +++ b/test/unit/bacnet/bacerror/src/fakes/bacdcode.h @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: Apache-2.0 +/** + * @file + * @brief fakes for BACnet primitive encoding and decoding + * @author Steve Karg + * @author Greg Shue + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - #ifndef BACNET_STACK_TEST_UNIT_BACNET_BACERROR_FAKES_BACDCODE_H_ #define BACNET_STACK_TEST_UNIT_BACNET_BACERROR_FAKES_BACDCODE_H_ diff --git a/test/unit/bacnet/bacerror/src/main.c b/test/unit/bacnet/bacerror/src/main.c index 3f95e0e8..2d8088ca 100644 --- a/test/unit/bacnet/bacerror/src/main.c +++ b/test/unit/bacnet/bacerror/src/main.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: Apache-2.0 +/** + * @file + * @brief fakes for BACnet Error message encoding and decoding + * @author Steve Karg + * @author Greg Shue + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - #include "bacnet/bacerror.h" #include #include diff --git a/test/unit/bacnet/bacint/src/main.c b/test/unit/bacnet/bacint/src/main.c index d2fd3777..5f100465 100644 --- a/test/unit/bacnet/bacint/src/main.c +++ b/test/unit/bacnet/bacint/src/main.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: Apache-2.0 +/** + * @file + * @brief unit test for BACnet Integer encoding and decoding + * @author Steve Karg + * @author Greg Shue + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - #include "bacnet/bacint.c" #include diff --git a/test/unit/bacnet/bits/src/main.c b/test/unit/bacnet/bits/src/main.c index 971e23b7..a9c95ac0 100644 --- a/test/unit/bacnet/bits/src/main.c +++ b/test/unit/bacnet/bits/src/main.c @@ -1,9 +1,11 @@ -/* - * Copyright (c) 2023 Legrand North America, LLC. - * - * SPDX-License-Identifier: Apache-2.0 +/** + * @file + * @brief unit test for BACnet bits encoding and decoding + * @author Steve Karg + * @author Greg Shue + * @date 2023 + * @copyright SPDX-License-Identifier: MIT */ - #include #undef BIT diff --git a/test/ztest/include/zephyr/fff.h b/test/ztest/include/zephyr/fff.h index caa0867f..9de5e8f7 100644 --- a/test/ztest/include/zephyr/fff.h +++ b/test/ztest/include/zephyr/fff.h @@ -1,7 +1,7 @@ /* * Copyright (c) 2010 Michael Long * - * SPDX-License-Identifier: MIT + * @copyright SPDX-License-Identifier: MIT */ #ifndef FAKE_FUNCTIONS #define FAKE_FUNCTIONS