C

Qt Quick Ultralite freertos_app_switch Example

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
#pragma once

#include <qul/singleton.h>
#include <qul/property.h>

class DevControl : public Qul::Singleton<DevControl>
{
public:
    DevControl();
    Qul::Property<int> application;
    void resetDevice();

private:
    void HWResetDevice();
};