aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/segger_bindings/RTT/SEGGER_RTT_streams.h
blob: 3ee679cb9eeb6574d35a5c184e6b19dac5cca43e (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
    ChibiOS - Copyright (C) 2006..2017 Giovanni Di Sirio
              Copyright (C) 2015..2017 Diego Ismirlian, (dismirlian (at) google's mail)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#ifndef SEGGER_RTT_streams_H_
#define SEGGER_RTT_streams_H_

#include "hal.h"
#include "SEGGER_RTT.h"

/*===========================================================================*/
/* Driver pre-compile time settings.                                         */
/*===========================================================================*/

/*===========================================================================*/
/* Derived constants and error checks.                                       */
/*===========================================================================*/

/*===========================================================================*/
/* Driver data structures and types.                                         */
/*===========================================================================*/

typedef enum {
	RTT_STATE_UNINIT = 0,
	RTT_STATE_STOP = 1,
	RTT_STATE_ACTIVE = 2,
	RTT_STATE_READY = 3
} rtt_state_t;

typedef enum {
	RTT_MODE_FLAGS_NO_BLOCK_SKIP = SEGGER_RTT_MODE_NO_BLOCK_SKIP,
	RTT_MODE_FLAGS_NO_BLOCK_TRIM = SEGGER_RTT_MODE_NO_BLOCK_TRIM,
	RTT_MODE_FLAGS_BLOCK_IF_FIFO_FULL = SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL,
} rtt_mode_flags_t;

#define _rtt_driver_methods                                          \
	_base_sequential_stream_methods

struct RTTDriverVMT {
	_rtt_driver_methods
};

typedef struct RTTDriver RTTDriver;
typedef struct RTTConfig RTTConfig;
typedef struct RTTBufferConfig RTTBufferConfig;

struct RTTDriver {
	/* inherited from abstract asyncrhonous channel driver */
	const struct RTTDriverVMT *vmt;
	_base_sequential_stream_data

	rtt_state_t state;
	unsigned int up_buffer_index;
	unsigned int down_buffer_index;
};

struct RTTBufferConfig {
	void *buff;
	unsigned int size;
	rtt_mode_flags_t flags;
};

struct RTTConfig {
	const char *name;
	RTTBufferConfig up;
	RTTBufferConfig down;
};

/*===========================================================================*/
/* Driver macros.                                                            */
/*===========================================================================*/
#define rttGetState(rttdp) ((rttdp)->state)
#define rttGetUpBufferIndex(rttdp) ((rttdp)->up_buffer_index)
#define rttGetDownBufferIndex(rttdp) ((rttdp)->down_buffer_index)

/*===========================================================================*/
/* External declarations.                                                    */
/*===========================================================================*/
extern RTTDriver RTTD0;

#ifdef __cplusplus
extern "C" {
#endif
	/* RTT device driver */
	void rttInit(void);
	void rttObjectInit(RTTDriver *rttdp, const RTTConfig *cfg);
	void rttStart(RTTDriver *rttdp);
	void rttSetUpFlags(RTTDriver *rttdp, rtt_mode_flags_t flags);
	void rttSetDownFlags(RTTDriver *rttdp, rtt_mode_flags_t flags);
#ifdef __cplusplus
}
#endif

#endif /* SEGGER_RTT_streams_H_ */