Skip to content

Commit 2ce09d5

Browse files
committed
Added docs on deprecation
1 parent 9c991f6 commit 2ce09d5

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

cflib/crazyflie/mem/trajectory_memory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,12 @@ def __init__(self, id, type, size, mem_handler):
169169
# elements in the same trajectory.
170170
self.trajectory = []
171171

172-
# Deprecated. replaced by self.trajectory
172+
# Deprecated (removed after August 2023). replaced by self.trajectory
173173
@property
174174
def poly4Ds(self):
175175
return self.trajectory
176176

177-
# Deprecated. replaced by self.trajectory
177+
# Deprecated (removed after August 2023). replaced by self.trajectory
178178
@poly4Ds.setter
179179
def poly4Ds(self, trajectory):
180180
self.trajectory = trajectory
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: APIs, versions and deprecations
3+
page_id: api-deprecation
4+
---
5+
6+
There are a number of APIs in the Crazyflie eco system on multiple levels, some might be obvious while others are a bit
7+
more subtle. Some of the APIs are documented and versioned while there is room for improvement in other cases.
8+
9+
Please see the section in the firmware documentation related to
10+
[APIs and versions](https://www.bitcraze.io/documentation/repository/crazyflie-firmware/master/development/apis_versions_deprecation/)
11+
for more information.

0 commit comments

Comments
 (0)