BUG FIX: Incorrect transition in Fibanacci_ros_action_server on unknown goal result response
This commit is contained in:
parent
1efeeef279
commit
1e8b5464b8
@ -804,7 +804,11 @@ begin
|
|||||||
case (stage) is
|
case (stage) is
|
||||||
when IDLE =>
|
when IDLE =>
|
||||||
if (r_sel = '1') then
|
if (r_sel = '1') then
|
||||||
|
if (unsigned(r_index) = MAX_GOALS) then
|
||||||
|
stage_next <= PASSTHROUGH;
|
||||||
|
else
|
||||||
stage_next <= GET_RESULT;
|
stage_next <= GET_RESULT;
|
||||||
|
end if;
|
||||||
-- Reset
|
-- Reset
|
||||||
abort_mem <= '1';
|
abort_mem <= '1';
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user