/* ** Copyright (c) AImotive Kft. 2020 ** ** The intellectual and technical concepts and implementations contained herein (including ** data structures, algorithms and essential business logic developed by AImotive Kft.) are ** proprietary to AImotive Kft., and may be covered by patents, and/or copyright law. This ** hardware or software is protected by trade secret, confidential business secret and as a ** general principle must be treated as confidential information. ** ** You may not use this hardware or software without specific prior written permission ** obtained from AImotive Kft. ** ** Access to this hardware or software is hereby forbidden to anyone except for Contracted ** Partners who have prior signed License Agreement, or Confidentiality, Non-Disclosure ** Agreements or any other equivalent Agreements explicitly covering such access and use. ** ** UNLESS OTHERWISE AGREED, THIS HARDWARE OR SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS ** OR IMPLIED WARRANTIES, INCLUDING - BUT NOT LIMITED TO - THE IMPLIED WARRANTIES OF ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. */ #ifndef AIWARE_RUNTIME__CONFIGS_HPP #define AIWARE_RUNTIME__CONFIGS_HPP #include "aiware/common/cpp/deviceconfigdata.hpp" #include "aiware/runtime/cpp/aiware-runtime-common-lib-cpp_export.h" namespace aiware { namespace runtime { AIWARE_RUNTIME_COMMON_LIB_CPP_EXPORT common::DeviceConfigData::Ptr createApache5Config(uint32_t frequencyMhz = 0); AIWARE_RUNTIME_COMMON_LIB_CPP_EXPORT common::DeviceConfigData::Ptr createApache6ESConfig(uint32_t frequencyMhz = 0); } // namespace runtime } // namespace aiware #endif //AIWARE_RUNTIME__CONFIGS_HPP