johnllon

【转载】基于FPGA的图像处理(五)--状态机

0
阅读(1863)

原文地址:http://blog.csdn.net/renshengrumenglibing/article/details/8241317


使用FPGA实现各种算法时,状态机是很常用的方法,在SysGen中有两种非常简便的方法构建状态机,一是使用Mcode,以switch-case语句轻松实现,二是使用SysGen自带状态机模块。

     状态机

假设我们要从01序列中检测出1011序列,则状态机模型如下

Next State Matrix:[0 1; 2 1; 0 3; 2 1]

Output Matrix : [0 0; 0 0; 0 0; 0 1]




一、使用Mcode实现

上一篇博客讲解了在Sysgen中Mcode的限制能力,这里直接使用

构建模型如下:


Singal From Workspace用于产生一个01序列,作为输入信号。

gatwayIn将数据类型转化为UFix_1_0

添加Mcode函数stateMcode.m

[plain] view plaincopy

  1. function [nextState, matched] = stateMcode(currentState, din)  

  2. % This is the update function for detecting a pattern of 1011  

  3. % This function represents a stateless and combination logic block.  

  4. % The output nextState should be to a register, and the output  

  5. % of the register should be fed back to the input currentState.  

  6. % Because the state register block has a feed back connection, in  

  7. % order to propagate the port prototypes automatically, the prototype  

  8. % of nextState should be determined only by constants or through  

  9. % an explicity xfix() call.  

  10.   seen_none = 0; % initial state, if input is 1, switch to seen_1  

  11.   seen_1 = 1;    % first 1 has been seen, if input is 0, switch  

  12.                  % seen_10  

  13.   seen_10 = 2;   % 10 has been detected, if input is 1, switch to  

  14.                  % seen_1011  

  15.   seen_101 = 3;  % now 101 is detected, is input is 1, 1011 is  

  16.                  % detected and the FSM switches to seen_1  

  17.   % the default value of matched is false  

  18.   matched = false;  

  19.   switch currentState  

  20.    case seen_none  

  21.     if din==1  

  22.       nextState = seen_1;  

  23.     else  

  24.       nextState = seen_10;  

  25.     end  

  26.    case seen_1 % seen first 1  

  27.     if din==1  

  28.       nextState = seen_1;  

  29.     else  

  30.       nextState = seen_10;  

  31.     end  

  32.    case seen_10 % seen 10  

  33.     if din==1  

  34.       nextState = seen_101;  

  35.     else  

  36.       % no part of sequence seen, go to seen_none  

  37.       nextState = seen_none;  

  38.     end  

  39.    case seen_101  

  40.     if din==1  

  41.       nextState = seen_1;  

  42.       matched = true;  

  43.     else  

  44.       nextState = seen_10;  

  45.       matched = false;  

  46.     end  

  47.    otherwise  

  48.     % if nextState is not assigned outside the switch statement,  

  49.     % an otherwise statment is required  

  50.     nextState = seen_none;  

  51.   end  

Scope效果如图:





二、使用Mealy State Machine模块实现

构建模型:


设置Mealy State Machine参数,就是状态机的参数



仿真结果如下:


在进行FPGA图像处理时,经常会用到状态机,这几天刚学习过,记录一下,其实使用Verilog直接实现也不是很难,只是会比SysGen稍微麻烦一些,修改起来也会花费更多的时间。

Model Based Design 在Xilinx 的工具中逐渐得到加强,相信以后会更加的方便。


Baidu
map