Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
crazyflie-lib-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lukas Wegmann
crazyflie-lib-python
Commits
bf1e9413
Commit
bf1e9413
authored
9 years ago
by
Arnaud Taffanel
Browse files
Options
Downloads
Patches
Plain Diff
Fixed basiclog example
parent
a56b8a03
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/basiclog.py
+0
-3
0 additions, 3 deletions
examples/basiclog.py
tools/build/bdist
+1
-1
1 addition, 1 deletion
tools/build/bdist
with
1 addition
and
4 deletions
examples/basiclog.py
+
0
−
3
View file @
bf1e9413
...
...
@@ -30,13 +30,10 @@ Simple example that connects to the first Crazyflie found, logs the Stabilizer
and prints it to the console. After 10s the application disconnects and exits.
"""
import
sys
import
logging
import
time
from
threading
import
Timer
sys
.
path
.
append
(
"
../src
"
)
sys
.
path
.
append
(
"
../src/cflib
"
)
import
cflib.crtp
# noqa
from
cflib.crazyflie.log
import
LogConfig
from
cflib.crazyflie
import
Crazyflie
...
...
This diff is collapsed.
Click to expand it.
tools/build/bdist
+
1
−
1
View file @
bf1e9413
...
...
@@ -9,7 +9,7 @@ try:
script_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
root
=
_path
.
normpath
(
_path
.
join
(
script_dir
,
'
../..
'
))
subprocess
.
check_call
([
'
python
3
'
,
'
setup.py
'
,
'
bdist_wheel
'
],
cwd
=
root
)
subprocess
.
check_call
([
'
python
'
,
'
setup.py
'
,
'
bdist_wheel
'
],
cwd
=
root
)
print
(
"
Wheel built
"
)
except
subprocess
.
CalledProcessError
as
e
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment