~aleteoryx/muditaos

ref: d896843d44450317cf2e6d89667793fe9b5310a0 muditaos/module-cellular/Modem/TS0710/TS0710_FLOW.h -rw-r--r-- 613 bytes
d896843d — Borys Jelenski [EGD-5415] Fix missing assets dep for lfstest.img 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#ifndef _TS0710_FLOW_H
#define _TS0710_FLOW_H

#include "TS0710.h"
// control channel

class TS0710_FLOW
{
  public:
    enum State_e
    {
        enable,
        disable
    };

    TS0710_FLOW()
    {}
    ~TS0710_FLOW()
    {}

  private:
    /**
     * @param DLCI
     * @param State
     */
    void request(DLCI_t DLCI, State_e State);

    /**
     * @param DLCI
     * @param State
     */
    void indication(DLCI_t DLCI, State_e State);
};

#endif //_TS0710_FLOW_H