Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Brisset committed Sep 18, 2006
1 parent 63f3da3 commit 2544092
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile.ac
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ help:
@echo "'paparazzi-make AIRCRAFT=<ac_name> [sim|ap.<action>|fbw.<action>|clean_ac]' where <action> is 'compile' or 'upload'"

init:
@[ -d $(PAPARAZZI_HOME) ] || (echo "Copying config example in your $(PAPARAZZI_HOME) directory"; mkdir -p $(PAPARAZZI_HOME); cp -a conf $(PAPARAZZI_HOME); cp -a data $(PAPARAZZI_HOME); mkdir -p var/maps; mv $(PAPARAZZI_HOME)/data/maps/trtqtttqtsrrt*.jpg $(PAPARAZZI_HOME)/var/maps)
@[ -d $(PAPARAZZI_HOME) ] || (echo "Copying config example in your $(PAPARAZZI_HOME) directory"; mkdir -p $(PAPARAZZI_HOME); cp -a conf $(PAPARAZZI_HOME); cp -a data $(PAPARAZZI_HOME); mkdir -p $(PAPARAZZI_HOME)/var/maps; mv $(PAPARAZZI_HOME)/data/maps/trtqtttqtsrrt*.jpg $(PAPARAZZI_HOME)/var/maps)

demo: ac1 ac2 ac3
PAPARAZZI_HOME=$(PAPARAZZI_HOME) PAPARAZZI_SRC=$(PAPARAZZI_SRC) $(SUPERVISION)
Expand Down
12 changes: 7 additions & 5 deletions conf/flight_plans/versatile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,24 @@
</block>

<block name="descent 0" strip_button="Descent">
<circle radius="50+(estimator_z-ground_alt)/2" wp="1" throttle="0.0" pitch="-0.3" vmode="throttle" until="ground_altitude+50 > estimator_z"/>
<circle radius="50+(estimator_z-ground_alt)/2" wp="1" throttle="0.0" pitch="-0.3" vmode="throttle" until="ground_alt+50 > estimator_z"/>
<deroute block="circle 1"/>
</block>

<block name="route12">
<go approaching_time="0" from="1" hmode="route" wp="2"/>
<deroute block="stack 2"/>
</block>

<block name="stack 2">
<circle radius="75" wp="2"/>
</block>

<block name="route21">
<go approaching_time="0" from="2" hmode="route" wp="1"/>
<deroute block="stack 1"/>
</block>

<block name="stack 2">
<circle radius="75" wp="2"/>
<block name="stack 1">
<circle radius="75" wp="1"/>
</block>

<block name="survey">
Expand Down

0 comments on commit 2544092

Please sign in to comment.