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