mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
Added QSIMSTAT urc handler and command parser. Added sim insertion state in SimCard. Now there No Sim response is sended if sim is missing. Sim not respond timer removed from Application Manager.
21 lines
365 B
C++
21 lines
365 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace at
|
|
{
|
|
enum class SimInsertedStatus
|
|
{
|
|
Removed,
|
|
Inserted,
|
|
Unknown
|
|
};
|
|
|
|
enum class SimInsertedStatusEnable
|
|
{
|
|
Disable,
|
|
Enable
|
|
};
|
|
} // namespace at
|