Commit Graph

53 Commits (630c1b6ae688ebc3eb6b42ccc9c38ac12e80f198)

Author SHA1 Message Date
Joakim Nohlgård 032c3b6883 Merge pull request #6914 from miri64/doc/fix/smartmenus
doc: utilize smartmenus
6 years ago
Martine Lenders b092179787
doc: utilize smartmenus 6 years ago
Martine Lenders c00a89fd9e
doc: fix spacing in parameter description
Fixes #6953
6 years ago
Martine Lenders d076d855c5 Merge pull request #6908 from miri64/doc/enh/less-conf
doc: add build capacities for LESS
6 years ago
Martine Lenders 1724b97b23 doc: add build capacities for LESS 6 years ago
Martine Lenders 75eef79c9e doc: add favicon 6 years ago
Martine Lenders 8ea20ea505 doc: Doxygen beautification 6 years ago
Martine Lenders 4dad2baae7 doc: add note about security@riot-os.org 6 years ago
Martine Lenders 29842bb5e4 netdev2: rename to netdev and remove `gnrc_netdev`
With some minor hand-edits I used the following chain of commands:

```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
        xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                     -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                     -e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
        grep "netdev2" | while read dir; do
                new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                git mv -f "$dir" "$new_dir"
        done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | while read file; do
                new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                git mv -f "$file" "$new_file"
        done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
        xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
6 years ago
Oleg Hahm 32ef8f8351 Merge pull request #6359 from OlegHahm/pkg_openwsn_remove
pkg: remove OpenWSN
6 years ago
Oleg Hahm cafafd5744 doc: escape hash character 6 years ago
Oleg Hahm 8a9f6a31a6 doc: replace pkg example in documentation 6 years ago
Martine Lenders 16bcffc69b doc: add operational flow figure for netdev 7 years ago
Martine Lenders 8c52d3e364 doc: fix typo 7 years ago
Oleg Hahm 8e6dc1a03f doc: updated and clarified tapsetup usage 7 years ago
Martine Lenders 8a588575f3 doc: fix link to devel mailman 7 years ago
Martine Lenders b5f5f8314a doc: add page about creating modules 8 years ago
Martine Lenders 31702f3ce8 doc: mention create-an-application page on main page 8 years ago
Martine Lenders 80829d5eba doc: add page about creating an application 8 years ago
Cenk Gündoğan 9d270ad1c0 doxygen: mainpage: link to GNRC 8 years ago
Cenk Gündoğan 0b77b259ef gnrc: enhance documentation 8 years ago
Martine Lenders 98bd5ee09c Merge pull request #4090 from authmillenon/doc/enh/overview-graphic
doc: add RIOT overview graphic
8 years ago
Martine Lenders 1550fe85db doc: add structure graphic to mainpage 8 years ago
Martine Lenders 3fb9f90a71 doc: add graphic showing general structure of RIOT 8 years ago
Martine Lenders 4385e5cd24 doc: add Miso fonts to documentation 8 years ago
Hauke Petersen 421e69030a Merge pull request #4315 from haukepetersen/doc_periph_fixes
doc: various fixes related to 'periph'
8 years ago
Emmanuel Baccelli e935ca4f57 modified typo in doc mainpage.md
fixed indentation
8 years ago
Hauke Petersen 95086da431 doc/drivers/sys: fixed all refs to drivers_periph_xx 8 years ago
Martine Lenders ccab1eae82 doc: add 'Getting started' page 8 years ago
Martine Lenders d50de568d1 doc: Update mainpage 8 years ago
Martine Lenders 505893e8e5 doc: move mainpage completely to markdown format 8 years ago
Oleg Hahm 09c5eab157 doc: minor update of mainpage.txt 8 years ago
Kaspar Schleiser 1733d4a730 doc: remove obsolete transceiver documentation 8 years ago
Hauke Petersen 9943f51080 global: renamed cpu-conf.h into cpu_conf.h 8 years ago
Lucas Jenß 742c39e838 Merge pull request #2881 from x3ro/clarify-stacksize-constants
Clarify and unify naming of thread-related constants (stacksize and priority)
8 years ago
Lucas Jenss 426170b064 Improve naming of thread stacksize/priority constants
As discussed in #2725, this commit renames a number of stacksize constants to
better convey their intended usage. In addition, constants for thread priority
are given a `THREAD_` prefix. Changes are:

* KERNEL_CONF_STACKSIZE_PRINTF renamed to THREAD_EXTRA_STACKSIZE_PRINTF
* KERNEL_CONF_STACKSIZE_DEFAULT renamed to THREAD_STACKSIZE_DEFAULT
* KERNEL_CONF_STACKSIZE_IDLE renamed to THREAD_STACKSIZE_IDLE
* KERNEL_CONF_STACKSIZE_MAIN renamed to THREAD_STACKSIZE_MAIN
* Move thread stacksizes from kernel.h to thread.h, since the prefix changed
* PRIORITY_MIN renamed to THREAD_PRIORITY_MIN
* PRIORITY_IDLE renamed to THREAD_PRIORITY_IDLE
* PRIORITY_MAIN renamed to THREAD_PRIORITY_MAIN
* Move thread priorities from kernel.h to thread.h since the prefix has changed
* MINIMUM_STACK_SIZE renamed to THREAD_STACKSIZE_MINIMUM for consistency
8 years ago
Joakim Gebart c054cfa813 doc/doxygen/src/riot-footer.html: remove tab indent 8 years ago
Oleg Hahm c0bcac460e doc: beautify HTML documentation
* add logo
* add description
* use RIOT specific color scheme
* add search functionality
* remove broken custom header, footer, and style sheet
9 years ago
Leon George 38bd27757b doc: mainpage.txt fixed minor mistake 9 years ago
Thomas Eichinger 1e983c9670 s/PROJECT/APPLICATION/g
fixes #548
9 years ago
Christian Mehlis cb9c5d00de repace project by application in documentation 9 years ago
Ludwig Ortmann 6663e7c2fb fix wiki links 9 years ago
Ludwig Ortmann 2525920426 remove trailing whitespace and newlines 9 years ago
Ludwig Ortmann a4a1c39d95 substitute folder with directory 10 years ago
Oleg Hahm e8f19cb884 added paragraph about stack sizes and fixed formatting 10 years ago
Oleg Hahm 8695e3b102 added information from Introduction page to the API start page 10 years ago
Oleg Hahm 5403003735 removed getting started text from doxygen mainpage 10 years ago
authmillenon a3b754b662 Remove carriage returns
Git for windows handles those by itself
10 years ago
Oleg 1c3a4f3ae9 Update mainpage.txt 10 years ago
Oleg Hahm dd32345011 * included modifications suggested by Ludwig 10 years ago