GrayCode for state machine
How & Why use Gray Code
A gray counter is a binary counter where only one bit changes at a time.
Gray code is mostly used to send values across clock domains (this way it has an uncertainty of only 1).
The easiest way to create a Gray counter is to first make a binary counter, and then convert the value to Gray.
=======================================================================
VS2013, Simulation
-------------------------------------------
#include <stdio.h>
#include <string>
template<int BITS>
std::string GetBits(unsigned int val){
std::string str;
for(int i = BITS-1; i >= 0; i --){
char c = '0';
if(val & (1 << i)) c = '1';
str.push_back(c);
}
return str;
}
template<int BITS>
unsigned int GetGrayCode(){
unsigned long mask = (1<<BITS)-1;
static unsigned int next = 0;
unsigned int nRtn = 0;
nRtn = (next >> 1) ^ (next);
next++;
if(next > mask) next = 0;
return nRtn;
}
void TestGrayCode(){
//Generate 4Bit Gray Code
const int BITS = 4;
printf("%6s : %s \n", "Index", "GrayCode");
printf("---------------------------------\n");
for(int i = 0; i < 16; i++){
std::string str = GetBits<BITS>( GetGrayCode<BITS>() );
printf("%06d : %s \n", i, str.c_str());
}
printf("---------------------------------\n");
}
void main(){
TestGrayCode();
}
----------------------------------------------------
4Bit GrayCode Result :
/////////////////////////////////////////////////////////////////////////////////////
-------------------------------Verilog-----------------------------------
module GenerateGrayCode(CLK, RST_N, gray_code);
parameter BITS_COUNT = 4;
input CLK, RST_N;
output [BITS_COUNT-1:0] gray_code;
reg [BITS_COUNT-1:0]cnt = 1'b0;
always @(posedge CLK or negedge RST_N)
begin
if (!RST_N) cnt <= 0;
else
begin
cnt <= cnt + 1'b1;
end
end
assign gray_code = (cnt >> 1'b1) ^ cnt;
endmodule
GrayCode for state machine的更多相关文章
- Finite State Machine 是什么?
状态机(Finite State Machine):状态机由状态寄存器和组合逻辑电路构成,能够根据控制信号按照预先设定的状态进行状态转移,是协调相关信号动 作.完成特定操作的控制中心. 类 ...
- State Machine.(状态机)
What is a State Machine? Any device that changes its state from one to another due to some actions a ...
- Finite State Machine
Contents [hide] 1 Description 2 Components 3 C# - FSMSystem.cs 4 Example Description This is a Dete ...
- Qt: The State Machine Framework 学习
State Machine,即为状态机,是Qt中一项非常好的框架.State Machine包括State以及State间的Transition,构成状态和状态转移.通过状态机,我们可以很方便地实现很 ...
- Android4.0中蓝牙适配器state machine(状态机)的分析
今天晓东和大家来一起看一下Android4.0中蓝牙适配器(Bluetooth Adapter)的状态机变化的过程.首先,我们需要了解一下,蓝牙适配器究竟有哪些状态,从代码可以清晰地看到(framew ...
- 控制结构(3) 状态机(state machine)
// 上一篇:卫语句(guard clause) // 下一篇:局部化(localization) 基于语言提供的基本控制结构,更好地组织和表达程序,需要良好的控制结构. 前情回顾 上次分析了guar ...
- 控制结构(3): 状态机(state machine)
// 上一篇:卫语句(guard clause) // 下一篇:局部化(localization) 基于语言提供的基本控制结构,更好地组织和表达程序,需要良好的控制结构. 前情回顾 上次分析了guar ...
- 【UML】-NO.43.EBook.5.UML.1.003-【UML 大战需求分析】- 状态机图(State Machine Diagram)
1.0.0 Summary Tittle:[UML]-NO.43.EBook.1.UML.1.003-[UML 大战需求分析]- 状态机图(State Machine Diagram) Style:D ...
- 【翻译】What is State Machine Diagram(什么是状态机图)?
[翻译]What is State Machine Diagram(什么是状态机图)? 写在前面 在上一篇学习类图的时候将这个网站上的类图的一篇文章翻译了出来,感觉受益良多,今天来学习UML状态机图, ...
随机推荐
- 基于镜像安装mysql
准备目录 cd /opt mkdir -p mysql/data mysql/logs mysql/conf 查找MySql镜像版本 docker search mysql 安装指定版本的mysql镜 ...
- 5.Django数据库配置
Django默认支持sqlite.mysql.oracle.postgresql数据库,像db2和sqlserver需要安装第三方的支持 配置Django数据库:\hello_django\hello ...
- android在activity中去掉标题栏
package com.goodness.goodness; import android.support.v7.app.AppCompatActivity; import android.os.Bu ...
- PHP环境变量归纳(转自网络)
PHP环境变量主要有$GLOBALS[].$_SERVER[].$_GET[].$_POST[].$_COOKIE[].$_FILES[].$_ENV[].$_REQUEST[].$_SESSION[ ...
- 磁盘检测SMART工具
题记: 做过一些关于硬盘的调研任务,当时搜集很多资料,不过现在没有,从网上找了一篇关于SMART的介绍,感觉基本上都是比较全面了. 首先各大硬盘厂商生产的硬盘基本都是会遵循SMART的技术标准的,当然 ...
- flex 特性
flex grow 分配的比例是对整体,比如 A grow 3 B grow 4,A连同margin一块是3
- Data Structure Linked List: Merge Sort for Linked Lists
http://www.geeksforgeeks.org/merge-sort-for-linked-list/ #include <iostream> #include <vect ...
- 323 id与小数据池
a = 1000b = 1000print(a == b)== 比较的是数值is 比较的是内存地址.print(a is b)查看内存地址id()print(id(a))print(id(b)) 小数 ...
- HTTPS与HTTP
HTTP HyperText Transfer Protocol超文本传输协议 HTTPS HyperText Transfer Protocol over Secure Socket Layer 基 ...
- 双向链表(C++实现)
////////////////////////////////////////////////////////////////////////////////////// /////// 这里建立两 ...