714d732745
* variable cluster size, label info functions for targets * app record * init, mount, get label, get sn, get space * enable exfat * more stack for the stack god * remove c app and add cpp app * remove MULTI_PARTITION * fix 4gb bug * update app to new template lib, add animated waiting * tiny buffer configuration * write speed benchmark * fnv1a hash library * make DEFAULT_STACK_SIZE and MAX_TASK_COUNT defined per target * fully functional sd card app * build sd test app to release firmware * cpp, not c * light up red led if error * flags for c++ * linking with g++ * suppres snprintf warning * move format work area to heap Co-authored-by: coreglitch <mail@s3f.ru>
14 lines
270 B
C
14 lines
270 B
C
#pragma once
|
|
#include "main.h"
|
|
#include <cmsis_os.h>
|
|
#include <stdbool.h>
|
|
|
|
// Task stack size in bytes
|
|
#define DEFAULT_STACK_SIZE 4096
|
|
|
|
// Max system tasks count
|
|
#define MAX_TASK_COUNT 10
|
|
|
|
bool task_equal(TaskHandle_t a, TaskHandle_t b);
|
|
bool task_is_isr_context(void);
|