You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.3 KiB
83 lines
2.3 KiB
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Digital Voice Modem - Common Library
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright (C) 2025 Bryan Biedenkapp, N2PLL
|
|
*
|
|
*/
|
|
/**
|
|
* @file KMMInventoryCommand.h
|
|
* @ingroup p25_kmm
|
|
* @file KMMInventoryCommand.cpp
|
|
* @ingroup p25_kmm
|
|
*/
|
|
#if !defined(__P25_KMM__KMM_INVENTORY_COMMAND_H__)
|
|
#define __P25_KMM__KMM_INVENTORY_COMMAND_H__
|
|
|
|
#include "common/Defines.h"
|
|
#include "common/p25/kmm/KMMFrame.h"
|
|
#include "common/p25/kmm/KeysetItem.h"
|
|
#include "common/Utils.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace p25
|
|
{
|
|
namespace kmm
|
|
{
|
|
// ---------------------------------------------------------------------------
|
|
// Constants
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/**
|
|
* @addtogroup p25_kmm
|
|
* @{
|
|
*/
|
|
|
|
const uint32_t KMM_INVENTORY_CMD_LENGTH = KMM_FRAME_LENGTH + 1U;
|
|
|
|
/** @} */
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Class Declaration
|
|
// ---------------------------------------------------------------------------
|
|
|
|
class HOST_SW_API KMMInventoryCommand : public KMMFrame {
|
|
public:
|
|
/**
|
|
* @brief Initializes a new instance of the KMMInventoryCommand class.
|
|
*/
|
|
KMMInventoryCommand();
|
|
/**
|
|
* @brief Finalizes a instance of the KMMInventoryCommand class.
|
|
*/
|
|
~KMMInventoryCommand();
|
|
|
|
/**
|
|
* @brief Decode a KMM inventory command.
|
|
* @param[in] data Buffer containing KMM frame data to decode.
|
|
* @returns bool True, if decoded, otherwise false.
|
|
*/
|
|
bool decode(const uint8_t* data) override;
|
|
/**
|
|
* @brief Encode a KMM inventory command.
|
|
* @param[out] data Buffer to encode KMM frame data to.
|
|
*/
|
|
void encode(uint8_t* data) override;
|
|
|
|
public:
|
|
/**
|
|
* @brief
|
|
*/
|
|
__PROPERTY(uint8_t, inventoryType, InventoryType);
|
|
|
|
__COPY(KMMInventoryCommand);
|
|
};
|
|
} // namespace kmm
|
|
} // namespace p25
|
|
|
|
#endif // __P25_KMM__KMM_INVENTORY_COMMAND_H__
|