Pages

Wednesday, 14 February 2018

RED MI NOTE 5 PRO SPECIFICATIONS












NETWORKTechnologyGSM / HSPA / LTE
LAUNCHAnnounced2018, February
StatusComing soon. Exp. release 2018, February
BODYDimensions158.6 x 75.4 x 8.1 mm (6.24 x 2.97 x 0.32 in)
Weight181 g (6.38 oz)
BuildFront glass, aluminum body
SIMHybrid Dual SIM (Nano-SIM, dual stand-by)
DISPLAYTypeIPS LCD capacitive touchscreen, 16M colors
Size5.99 inches, 92.6 cm2 (~77.4% screen-to-body ratio)
Resolution1080 x 2160 pixels, 18:9 ratio (~403 ppi density)
MultitouchYes
 - MIUI 9
PLATFORMOSAndroid 7.1.2 (Nougat)
ChipsetQualcomm SDM636 Snapdragon 636
CPUOcta-core 1.8 GHz Kryo 260
GPUAdreno 509
MEMORYCard slotmicroSD, up to 256 GB (uses SIM 2 slot)
Internal64 GB, 4/6 GB RAM or 32 GB, 3 GB RAM
CAMERAPrimaryDual: 12 MP (f/2.2, 1.25 μm) + 5 MP (f/2.0, 1.12 μm), phase detection autofocus, dual-LED dual-tone flash
FeaturesGeo-tagging, touch focus, face detection, panorama, HDR
Video1080p@30fps
Secondary20 MP (f/2.0, 1/2.8"), LED flash, 1080p
SOUNDAlert typesVibration; MP3, WAV ringtones
LoudspeakerYes
3.5mm jackYes
 - Active noise cancellation with dedicated mic
COMMSWLANWi-Fi 802.11 a/b/g/n, Wi-Fi Direct, hotspot
Bluetooth4.2, A2DP, LE
GPSYes, with A-GPS, GLONASS, BDS
Infrared portYes
RadioFM radio
USBmicroUSB 2.0
FEATURESSensorsFingerprint (rear-mounted), accelerometer, gyro, proximity, compass
MessagingSMS(threaded view), MMS, Email, Push Mail, IM
BrowserHTML5
 - Fast battery charging 5V/2A
- DivX/Xvid/MP4/H.265 player
- MP3/WAV/eAAC+/FLAC player
- Photo/video editor
- Document viewer
BATTERY Non-removable Li-Po 4000 mAh battery
MISCColorsBlack, Champagne Gold, Rose Gold, Blue
PriceAbout 200 EUR

Wednesday, 7 February 2018

2:4 DECODER
(5TH SEM ECE HDL)


A decoder is a circuit that changes a code into a set of signals. It is called a decoder because it does the reverse of encoding, but we will begin our study of encoders and decoders with decoders because they are simpler to design.
A common type of decoder is the line decoder which takes an n-digit binary number and decodes it into 2ndata lines. The simplest is the 1-to-2 line decoder. 


VERILOG CODE  (ECE HDL )

module (input a,b,
output p,q,r,s);
assign p=(~a)&(~b);
assign q=(~a)&(b);
assign r=(a)&(~b);
assign s=(a)&(b);
endmodule


TRUTH TABLE



video link for explantion===https://youtu.be/6hXhdhNNtc8



Another code for 2:4 Decoder


Simulation Graph