mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-28 02:36:37 +08:00
Non-compliant nodes support
WorkQueueManager:Increase UAVCAN stack size
This commit is contained in:
committed by
Daniel Agar
parent
c7182d5453
commit
8747b343d9
@@ -75,7 +75,7 @@ static constexpr wq_config_t INS3{"wq:INS3", 6000, -17};
|
|||||||
|
|
||||||
static constexpr wq_config_t hp_default{"wq:hp_default", 1900, -18};
|
static constexpr wq_config_t hp_default{"wq:hp_default", 1900, -18};
|
||||||
|
|
||||||
static constexpr wq_config_t uavcan{"wq:uavcan", 2176, -19};
|
static constexpr wq_config_t uavcan{"wq:uavcan", 2576, -19};
|
||||||
|
|
||||||
static constexpr wq_config_t UART0{"wq:UART0", 1400, -21};
|
static constexpr wq_config_t UART0{"wq:UART0", 1400, -21};
|
||||||
static constexpr wq_config_t UART1{"wq:UART1", 1400, -22};
|
static constexpr wq_config_t UART1{"wq:UART1", 1400, -22};
|
||||||
|
|||||||
Submodule src/drivers/uavcan/libuavcan updated: 04377cc270...b1dc99279a
@@ -72,6 +72,9 @@
|
|||||||
/*
|
/*
|
||||||
* UavcanNode
|
* UavcanNode
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define UAVCAN_FIRMWARE_CACHE_PATH UAVCAN_FIRMWARE_PATH"/c/"
|
||||||
|
|
||||||
UavcanServers *UavcanServers::_instance;
|
UavcanServers *UavcanServers::_instance;
|
||||||
|
|
||||||
UavcanServers::UavcanServers(uavcan::INode &main_node) :
|
UavcanServers::UavcanServers(uavcan::INode &main_node) :
|
||||||
@@ -217,7 +220,7 @@ UavcanServers::init()
|
|||||||
|
|
||||||
/* Start fw file server back */
|
/* Start fw file server back */
|
||||||
|
|
||||||
ret = _fw_server.start();
|
ret = _fw_server.start(UAVCAN_FIRMWARE_CACHE_PATH);
|
||||||
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
PX4_ERR("BasicFileServer init: %d, errno: %d", ret, errno);
|
PX4_ERR("BasicFileServer init: %d, errno: %d", ret, errno);
|
||||||
|
|||||||
Reference in New Issue
Block a user