Welcome to mirror list, hosted at ThFree Co, Russian Federation.

furi-hal-task.h « furi-hal « f6 « targets « firmware - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b1572335653ef9d106362f9f2bf54561d9392a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "main.h"
#include <cmsis_os2.h>
#include <stdbool.h>

// Task stack size in bytes
#define DEFAULT_STACK_SIZE 4096

// Max system tasks count
#define MAX_TASK_COUNT 14

bool task_is_isr_context(void);