2

在过去的几天里,我一直在尝试解决VHDL中的转换错误,这让我感到很困惑。我的代码附在下面。

它将正确评估 if 语句,但不会将新值分配给 min 或 max 变量。我知道这一点,因为我注释掉并测试了函数的不同方面。

仅供参考。typet_battery_data包含一个数组,std_logic_vectors(15 downto 0)即我在下面的函数中比较的电压。

我不确定它为什么会这样。我在网上搜索中所能找到的几乎所有内容都包括ieee.numeric_std我已经完成的图书馆。

还是一头雾水。任何建议将不胜感激。谢谢!

function cell_delta_voltage_counts(
    bat_data: t_battery_data
) return integer is

    constant POS_INFINITY: integer:= 2 ** 16 - 1;
    constant NEG_INFINITY: integer:= 0;

    variable min: integer range 0 to 2 ** 16 - 1:= POS_INFINITY-5;
    variable max: integer range 0 to 2 ** 16 - 1:= NEG_INFINITY;

begin

    for i in 0 to NUM_CELLS-1 loop

        if (to_integer(unsigned(bat_data.cell_readings(i).voltage)) < min) then
            min := to_integer(unsigned(bat_data.cell_readings(i).voltage));
        end if;

        if (to_integer(unsigned(bat_data.cell_readings(i).voltage)) > max) then
            max := to_integer(unsigned(bat_data.cell_readings(i).voltage));
        end if;

    end loop;

    return max - min;

end function cell_delta_voltage_counts;
4

2 回答 2

1

我在这里看不出有什么问题。我试过你的代码,它在 Modelsim DE 10.1c 中对我有用。你用的是什么模拟器?

这是我在尝试您的功能时使用的代码:

library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity test is
end entity;

architecture sim of test is

   constant NUM_CELLS : integer := 2;

   type t_reading is record
      voltage : std_logic_vector(15 downto 0);
   end record t_reading;

   type t_readings is array(natural range <>) of t_reading;

   type t_battery_data is record
      cell_readings : t_readings(0 to NUM_CELLS-1);
   end record t_battery_data;

   function cell_delta_voltage_counts(
     (...)
   end function cell_delta_voltage_counts;
begin

   process
      variable v_battery_data : t_battery_data;
      variable v_result : integer := 0;
   begin
      v_battery_data.cell_readings(0).voltage := x"000a";
      v_battery_data.cell_readings(1).voltage := x"001a";

      v_result := cell_delta_voltage_counts(v_battery_data);
      report "result: " & integer'image(v_result);

      wait;
   end process;

end architecture;

我完全按照您发布的功能使用了您的功能。正如预期的那样,模拟的输出是“结果:16”。

于 2012-09-24T15:57:33.277 回答
1

我没有使用很多函数,但是 IIRC 如果您希望 min 和 max 在调用之间“记住”它们的状态,则需要在函数外部声明它们并将函数声明为不纯:

variable min: integer range 0 to 2 ** 16 - 1:= POS_INFINITY-5;
variable max: integer range 0 to 2 ** 16 - 1:= NEG_INFINITY;

impure function cell_delta_voltage_counts(
...
于 2012-09-21T21:11:58.253 回答