Modeling Counters and Timers in Embedded MATLAB

버전 1.0.0.1 (12.2 KB) 작성자: Kiran Kintali
Implementing various kinds of counters like Johnson, Gray, Mod counters in Embedded MATLAB.
다운로드 수: 4.4K
업데이트 날짜: 2016/9/1

라이선스 보기

(Developed using R2007b)
Timers and counters are essential elements in hardware design. A timer can be used to measure elapsed time and a counter is used to count number of external events in hardware circuits.

This demo shows how to build timers and counters in Embedded MATLAB. The attached model contains implementations of the following counters.

Gray Counter
Johnson Counter
Mod-N Counter
Up Down Counter (With enable)
Preset Clear Counter
Call Count Detector

Gray Counter:

Gray code is a binary numeral system where two successive values differ in only one digit. Gray codes are widely used to facilitate error correction in digital communications such as digital terrestrial television and some cable TV systems. A 4bit gray code counter has the following binary sequence as its output.

0000
0001
0011
0010
0110
0111
0101
0100
1100
1101
1111
1110
1010
1011
1001
1000

Johnson Counter:

A ring counter is a type of counter composed of a circular shift register.
The output of the last shift register is fed to the input of the first register.
A Johnson counter is also called as a walking ring counter wherein the output of the last shift register is inverted and fed back to the input of first shift register. A 4bit johnson counter has the following binary sequence as its output.

0000
0001
0011
0111
1111
1110
1100
1000
0000

Modulo N Counter:

The total number of stable states a counter has indicates its MODULUS. A Mod3 counter has the following binary sequence as its output.

000
001
010
011
100
101
110
111

인용 양식

Kiran Kintali (2024). Modeling Counters and Timers in Embedded MATLAB (https://www.mathworks.com/matlabcentral/fileexchange/16302-modeling-counters-and-timers-in-embedded-matlab), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.1

Updated license

1.0.0.0

add to eML category