Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 482 → Rev 483

/branches/ligi_j2me/README
9,7 → 9,7
*
* Author: Marcus -LiGi- Bueschleb
* Project-Start: 9/2007
* Version: 0.41
* Version: 0.42
* Mailto: ligi
* <-/AT/->
* smart4mobile.de
18,6 → 18,7
* (Creative Commons / Non Commercial / Share Alike)
* Addtitonally to this Licence it is not allowed to use this software in any violent manner.
* This explicitly includes that lethal Weapon owning "People" (e.g. Army & Police) are not allowed to use this Project
* If you want to use this tool in any Commercial Context - please contact me first!
*
* Disclaimer: Use this Project at your own Risk!
*
25,6 → 26,7
* CaScAdE for Testing and Graphics
* Orion8 for inspiration
* Joko for Testing and Comments
* Thomas Fitchen for equipping me with my first RC stuff
*
* Online Links:
*
77,11 → 79,15
*** Tested on:
SE K800i
SE W800i
SE W810i
SE K610i
 
Nokia N95
Nokia N80
Nokia 6234
Nokia 6131
Nokia N80
Nokia 6300
Nokia 6230
Nokia 6230i ( without MK )
 
*** Compile:
113,7 → 119,7
- triangulate MK by BT rssi
- trigger mobile-cammera via FC
- save/reat Parameters in/from RMS ( e.g. to copy parameters from MK 2 MK )
- Port to OpenMoko ( will do when i have such a phone ;-)
- Port to Android ( will do when i have such a phone ;-)
- tbc
 
*** ChangeLog:
154,4 → 160,8
0.39 - rotation instead of clipping in main menu select
0.40 - Input Values in ParameterEditor via KEY0..KEY9
0.41 - block motortest values > 255 / BugFixes / better Parameter Input
 
0.42 - Display UBatt and SenderOkay
- RAW Debug Mode
- BugFixes ( e.g. SetPoint in ParamsParser was wrong )
- using newer Antenna Preprocessor so that version has to be changed only once
- KeyControl -> send KeyEvents as BitField from mobile to FC in order to control the MK
/branches/ligi_j2me/build.xml
2,6 → 2,7
<property name="wtk.home" value="/home/ligi/tools/WTK2.2/"/>
 
<property name="project_name" value="DUBwise"/> <!-- jar filename -->
<property name="project_version" value="0.42"/>
 
<property file="build.props"/>
 
9,6 → 10,8
<property name="build_dir" location="${basedir}/build/"/>
<property name="lib_dir" location="${basedir}/lib/"/>
<property name="src_dir" location="${basedir}/src/"/>
<property name="preprocessed_src_dir" location="${basedir}/tmp/pp_src/"/>
 
<taskdef resource="antenna.properties" classpath="${lib_dir}/antenna.jar"/>
 
17,7 → 20,8
<property name="wtk.midpapi" value="${lib_dir}/classes.zip"/>
<target name="build">
<wtkbuild destdir="${build_dir}/classes" srcdir="${src_dir}" target="1.1" preverify="true"/>
<wtkpreprocess version="2" srcdir="${src_dir}" destdir="${preprocessed_src_dir}" symbols="VERSION=${project_version}" verbose="false"/>
<wtkbuild destdir="${build_dir}/classes" srcdir="${preprocessed_src_dir}" target="1.1" preverify="true"/>
<wtkjad
jadfile="${build_dir}/bin/${project_name}_${screensize}.jad"
jarfile="${build_dir}/bin/${project_name}_${screensize}.jar"
25,7 → 29,7
manifest="${build_dir}/bin/MANIFEST.MF"
name="${project_name}"
vendor="LiGi"
version="0.40">
version="${project_version}">
<attribute name="MIDletX-No-Command" value="true"/>
<attribute name="MIDlet-Icon" value="i.png"/>
<midlet name="${project_name}" class="${project_name}" icon="i.png" />
/branches/ligi_j2me/src/MKMiniCanvas.java
244,7 → 244,10
 
switch(state)
{
case STATEID_KEYCONTROL:
mk.send_keys(keycontrol_bitfield);
break;
 
case STATEID_MOTORTEST:
 
if (motor_test_sel_all)