YAHAL
Yet Another Hardware Abstraction Library
Loading...
Searching...
No Matches
yahal_config.h
1#ifndef _YAHAL_CONFIG_ESP8266_H_
2#define _YAHAL_CONFIG_ESP8266_H_
3
4#include <cstdint>
5
7// YAHAL Parameters for ESP8266 platform //
9
10// task configuration
12
13// Number of cores
14#define NUMBER_OF_CORES 1
15// Tick frequency in Hz
16#define TICK_FREQUENCY 1000
17// Default stack size in bytes
18#define DEFAULT_STACK_SIZE 1024
19// Default task priority (1..N, 1 lowest)
20#define DEFAULT_PRIORITY 100
21// Default magic number in stack area
22#define STACK_MAGIC 0xA5
23// Define to check stack overflow
24#define CHECK_STACK_OVERFLOW
25// Define to use simple round-robin without priorities
26#undef SIMPLE_ROUND_ROBIN
27
28#endif // _CONFIG_ESP8266_H_