diff --git a/doc/guides/c_tutorials/timers.md b/doc/guides/c_tutorials/timers.md index 00a9cd9ae4..3e242fe37d 100644 --- a/doc/guides/c_tutorials/timers.md +++ b/doc/guides/c_tutorials/timers.md @@ -50,7 +50,7 @@ also use soon. Using `ztimer_sleep(ZTIMER_SEC, 5);` we simply wait for around But what if we want to do something else while waiting for the timer to expire? Let's take a closer look at how we can use timers in RIOT. -### Step 1: Creating a Callback +## Step 2: Creating a Callback Timers are a way to schedule tasks to be executed at a later time. In RIOT, you have to tell the timers two things: @@ -76,7 +76,7 @@ and prints the string to the console. Congrats, you have created a callback func now all that is left is to create the timer and schedule it. To do that lets restructure our `main` function to use the timer. -### Step 2: Scheduling the Timer +## Step 3: Scheduling the Timer Go into your `main` function and include the following code: @@ -102,7 +102,7 @@ This code tells the timer to fire in 3 seconds. The first argument specifies which type of clock we want to use, the second argument is the timer we created, and the third argument is the time in seconds. -### Step 3: Running the Program +## Step 4: Running the Program Now that we have created the timer and scheduled it, we can run the program. Compile the program using `make` and flash it to your board using `make flash`. diff --git a/doc/guides/misc/managing-a-release.md b/doc/guides/misc/managing-a-release.md index 58de499ed5..10f844c674 100644 --- a/doc/guides/misc/managing-a-release.md +++ b/doc/guides/misc/managing-a-release.md @@ -3,18 +3,6 @@ title: Managing a Release description: This page describes the process of managing a release. --- -## Contents - -1. [Checklist](#1-checklist) -2. [Preparation](#2-preparation) -3. [Feature Freeze and Testing](#3-feature-freeze-and-testing) -4. [Drafting Release Notes](#4-drafting-release-notes) -5. [Actual Release](#5-actual-release) -6. [Other Repositories](#6-other-repositories) -7. [Important Fixes after Release](#7-important-fixes-after-release) -8. [Resources](#8-resources) -9. [Forum Post Templates](#9-forum-post-templates) - ## 1. Checklist Steps marked with a :scroll: icon can also be automated with the release manager script.