Blame view

RIOT/LOSTANDFOUND.md 2.03 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  # Removed Features and Modules
  
  This document contains a listing of all features and modules that were removed
  from RIOT at some point in time, mostly due to missing maintenance. The purpose
  of this list is to have a reference point for reintegrating those features in
  the future, if new interest arises or a new maintainer is found.
  
  This list is **not** supposed to contain a change log of all the things that are
  being removed from RIOT, but should contain only full modules that are
  removed without any alternative being merged at the same time. For example
  things like the first `netdev` should not be put in this list, as a successor
  (former `netdev2`) has been merged.
  
  
  ## How to read this list
  
  For each high-level feature removed there should be one entry in this list. The
  entries should comply to the following template:
  
  ~~~~~~~~~~~~~~~~~~~ {.md}
  ### path/feature_name [HASH of removal commit]
  Author(s):
  - author 1 <foo.bar@abc.com>
  - author 2 <a.b@c.net>
  
  Reason for removal:
  - give a short and comprehensive reasoning why this feature was removed
  - typical reasons are:
  - feature is not maintained anymore
  - lack of hardware so feature can not be tested (anymore)
  - feature was never used and there is no reason for keeping it
  ~~~~~~~~~~~~~~~~~~~
  
  By putting the name of the removed feature and the commit hash in the same line,
  one can very quickly find the commit using `git grep`.
  
  Listing the authors of the removed code is done for appreciation of their work.
  This way, their names are never removed from the RIOT repository.
  
  
  # Removed Features
  
  ### boards/weio [cfa9580f319508f858c8fe30ecce8b2b59b6caa3]
  Author(s):
  - Paul Rathgeb <paul.rathgeb@skynet.be>
  
  Reason for removal:
  - hardware not available to the community for testing
  - original author and maintainer won't be able to maintain the code
  
  ### cpu/lpc11u34 [7bc271807cecbffbb01a37c56a367b98fb823573]
  Author(s):
  - Paul Rathgeb <paul.rathgeb@skynet.be>
  
  Reason for removal:
  - hardware not available to the community for testing
  - original author and maintainer won't be able to maintain the code