-
Notifications
You must be signed in to change notification settings - Fork 3
/
mrbwrite.h
54 lines (45 loc) · 1.34 KB
/
mrbwrite.h
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
/*! @file
@brief
mruby/c irep file writer.
<pre>
Copyright (C) 2017- Kyushu Institute of Technology.
Copyright (C) 2017- Shimane IT Open-Innovation Center.
This file is distributed under BSD 3-Clause License.
</pre>
*/
#include <QCoreApplication>
#include <QStringList>
#include <QTextStream>
#include <QSerialPort>
#include <QIODevice>
//================================================================
/*! MrbWrite class.
*/
class MrbWrite : public QCoreApplication
{
Q_OBJECT
public:
MrbWrite( int argc, char *argv[] );
void sleep_ms( int ms );
public slots:
void run();
private:
QTextStream qout_; //!< console output stream.
bool opt_verbose_; //!< command line option --verbose
bool opt_show_lines_; //!< command line option --showline
int opt_timeout_; //!< command line option --timeout
QString line_; //!< command line option parameter -l
QStringList mrb_files_; //!< .mrb file filename list.
QSerialPort serial_port_; //!< serial port object.
int serial_baud_rate_; //!< serial baud rate.
QString target_rite_version_; //!< target board RITE version string.
int connect_target();
int clear_bytecode();
int show_prog();
int write_file( QIODevice &file );
void execute_program();
int setup_serial_port();
QString get_line( int timeout_count = 0 );
int chat( const char * );
void show_lines();
};