21 lines
482 B
C++
21 lines
482 B
C++
/*
|
|
* eth_task_settings.hpp
|
|
*
|
|
* Created on: Jun 26, 2023
|
|
* Author: algin
|
|
*/
|
|
|
|
#ifndef FREE_RTOS_ETHERNET_ETH_TASK_SETTINGS_HPP_
|
|
#define FREE_RTOS_ETHERNET_ETH_TASK_SETTINGS_HPP_
|
|
|
|
#include <cstdint>
|
|
|
|
#include "free_rtos/task/task.hpp"
|
|
|
|
namespace free_rtos {
|
|
static constexpr uint32_t LINK_TASK_PRIORITY = tskIDLE_PRIORITY + 22;
|
|
static constexpr uint32_t LINK_TASK_STACK_SIZE = 0x2000 / sizeof(StackType_t);
|
|
}
|
|
|
|
#endif /* FREE_RTOS_ETHERNET_ETH_TASK_SETTINGS_HPP_ */
|