[CE] Schmitt trigger
·
Computer/CE
Schmitt trigger hysteresis(이력현상)를 이용한 logic gate. noise immunity가 필요한 경우 사용되는 소자로 noise가 심한 경우에도 output에서의 glitch(작은 에러)가 적어짐. 하지만, feedback이 필요해서 일반적인 gate보다 복잡하고 단가가 높음. 위 그림은 Transfer function of a Schmitt trigger를 보여줌. 세로축인 output이고, 가로축이 input으로 보통 voltage로 표시된다. $T$와 $-T$는 false에서 true로 올라가는 경우와 true에서 false로 내려오는 경우에 대한 threshold(역치값)으로 이전 상태에 따라 다른 threshold가 사용된다. 참고로 True에 해당하는 output의..
[CE] (Logic) Gates
·
Computer/CE
What Gate IsCombinatorial Logic (조합논리)에서 사용되는 Boolean Function들을 구현하고 있는 Chip (or Circuit)을 가르킴.Texas Instruments가 1960년대 중반의 5400과 7400 계열의 IC(Integrated Circuit)로 NAND Gate를 출시(1IC에 4개의 NAND)한 이후로 Digital System (or Digital Circuit)을 구현하기 위한 기본 구성 요소로 널리 사용되고 있음.Gate는 디지털 회로 실습 시간에 만나는 IC 들로서 Breadboard(빵판)와 함께 공대생들이 가장 익숙한 Device라고도 할 수 있음.TTL 에 의해 Transistor 로도 구현 가능하지만, IC 형태로 구현된 경우가 대다수임...
[CE] Combinatorial Circuit or Combinatorial Logic Circuit
·
Computer/CE
Combinatorial Logic (조합논리, 조합회로, Combinational Logic)"False(0)와 True(1)을 다루는 algebra(대수)인 Boolean algebra의 logic function을 구현한 것"이 바로 combinatorial circuit임.Combinational logic circuit 또는 combinational logic 이라고도 불림.Digital System의 instantaneous system임.더보기Algebra는 number사이의 관계를 문자($x$등의 변수)를 사용하여 간단하게 나타내는 것(변수에 대입)과 이를 이용하여 효율적으로 계산(방정식 풀기)하는 기술을 가르킴. 이를 반영하여 대수(代數, 수를 대신함)라고 번역됨. Algebra는 어떤 ..
[CE] Binary Encoder and Decoder
·
Computer/CE
Binary Encoder and Decoder 1. Binary (or Priority) Encoder Priority Encoders take all of their data inputs one at a time and converts them into an equivalent binary code at its output. 1-1. Combinational logic circuit (4:2 encoder) OR gate를 이용한 간단한 예를 보여준다. 2. (Binary) Decoder ** Binary Decoder is another combinational logic circuit constructed from individual logic gates and is the exact opposi..
[CE] Demultiplexer and Multiplexer (Demux and Mux)
·
Computer/CE
Demultiplexer and Multiplexer (Demux and Mux) 1. Demultiplexer The demultiplexer is a combinational logic circuit designed to switch one common input line to one of several seperate output line. demux라고 줄여서 부름. 1개의 입력을 여러 출력 중 하나로 연결! Decoder에 다음과 같이 몇가지 gate를 추가하여 만들 수 있음. Decoder 참고 자료. 2022.12.08 - [Computer/CE] - [CE] Binary Encoder and Decoder [CE] Binary Encoder and Decoder Binary Encoder ..
Round-off Error vs. Truncation Error
·
Computer/ETC
Round-off Error: 컴퓨터에서 수치를 저장하는 데이터 타입의 한계로 인한 에러.제한된 비트에 수치를 저장하기 때문에 발생하며 Finite word-length effect, Finite word-length error라고도 불림.주로 quantization에서 발생.더보기Finite precision characteristic (유한정세도특성)계수양자화특성 : Transfer function (←difference equation)을 구현할 때 사용되는 반도체 소자의 bit수 에 따라, coefficient의 양자화 특성이 결정됨 → 높은 bit의 반도체 소자일수록 양자화 에러가 적음.라운딩 특성 : 또한 coefficient와 input signal이 곱해지는 과정에서 round-off er..