MikroKopter.de
Wiki
SHOP
Datenschutz
Impressum
Projects
BL-Ctrl
FlightCtrl
MK3Mag
NaviCtrl
Català-Valencià – Catalan
中文 – Chinese (Simplified)
中文 – Chinese (Traditional)
Česky – Czech
Dansk – Danish
Nederlands – Dutch
English – English
Suomi – Finnish
Français – French
Deutsch – German
עברית – Hebrew
हिंदी – Hindi
Magyar – Hungarian
Bahasa Indonesia – Indonesian
Italiano – Italian
日本語 – Japanese
한국어 – Korean
Македонски – Macedonian
मराठी – Marathi
Norsk – Norwegian
Polski – Polish
Português – Portuguese
Português – Portuguese (Brazil)
Русский – Russian
Slovenčina – Slovak
Slovenščina – Slovenian
Español – Spanish
Svenska – Swedish
Türkçe – Turkish
Українська – Ukrainian
Oëzbekcha – Uzbek
Subversion Repositories
Projects
(root)
/
QMK-Groundstation
/
branches
/
libMK
/
libMK
/
Handler.cpp
@ 922
- Rev 524
Rev
Show changed files
|
Details
|
Compare with Previous
|
Blame
|
RSS feed
Filtering Options
From rev
To rev
Max revs
Search history for
Show All
Rev
Age
Author
Path
Log message
Diff
524
5595 d 8 h
Brean
/QMK-Groundstation/
basic Unit-Testing classes
513
5606 d 8 h
Brean
/QMK-Groundstation/branches/libMK/
Daten empfangen und senden über QTSerialCommunication in libMK
Angefangen mit Unit-Testing für die libMK
500
5627 d 4 h
Brean
/QMK-Groundstation/branches/libMK/
receiving data from MikroKopter
added new, detailed logging for libMK (with colors)
462
5650 d 0 h
Brean
/QMK-Groundstation/branches/libMK/libMK/
communication stuff
449
5656 d 11 h
Brean
/QMK-Groundstation/branches/libMK/
removed string - using char * instead
moved "create frame" method to parser (so all the communication class has to do is to send and receive raw data)
442
5663 d 7 h
Brean
/QMK-Groundstation/branches/libMK/
Data in MotorMixer
440
5663 d 9 h
Brean
/QMK-Groundstation/branches/
moved com to libMK
created KopterData as only class that contains the data of the Mikrokopter
removed Motor-stuff (I will create a motor struct later)
399
5668 d 8 h
Brean
/QMK-Groundstation/
added Communication class with some basic stuff (only a bool variable that remembers if connection is established)
moved most of the commands from mktool.cpp to Handler.cpp/extended Handler.cpp
397
5668 d 9 h
Brean
/QMK-Groundstation/branches/own_com_lib/
removed get_Float from ToolBox
396
5668 d 9 h
Brean
/QMK-Groundstation/branches/own_com_lib/
added FIXMEs for things that will be put in the com-lib
added pri-file for com-lib
added kdevelop-file
compiles successfully (but QMKGS does not work - communication is not possible)
changed svn-propset to ignore generated files
393
5669 d 5 h
Brean
/QMK-Groundstation/branches/own_com_lib/
decode64 calculates length using string.size() (FIXME: Check if this is correct)
copied receive_data to handler (FIXME: needs to be rewritten to save values in local variables that will be updated by the gui in a preset interval)
392
5669 d 7 h
Brean
/QMK-Groundstation/branches/own_com_lib/
New Communication class that is inherited by QTCommunication.
This allows easier exchange of the communication module.
cConnection will be deleted in one of the next releases.
An alternative communication class for pure socket connection will be added in the future.
391
5669 d 8 h
Brean
/QMK-Groundstation/branches/own_com_lib/
First steps to seperate Mikrokopter-communication stuff and logic from GUI
(WARNING: will not compile jet!)
this includes:
* comment code in English
* lowercase for variable names
* QT-independent Code (using std::string instead of qstring etc.)
(Maybe "com" is the wrong name and I should rename it to libmk or something)
the folder com includes a Parser that parses incomming data from the Mikrokopter in another format and a Handler that can understand the Mikrokopter commands and that fills structs according to the definitions.