SlideShare a Scribd company logo
1 of 75
EMBEDDED SYSTEM BASICS
POWERED BY
RANA ALI
Interface Analog voltage
• Interfacing ACS 712 current sensor
• Measuring current and give voltage output
ACS712 relation between Current on
Output voltage
Driving ACS 712 formula
Input current Output voltage ADC value
-30 A 0 V 0
0 A 2.5 V 512
+30 A 5 V 1023
Y = MX + B
And
M = (y2-y1) / (x2 – x1)
M = ( 1023 – 0 ) / (30 – (-30))
M = 1023 / 60
M = 17.05
Y = MX + B
Y = 17.05X + 512
X = (Y – 512) / 17.05
FPGA block diagram
Logic Block
Logic flow in FPGA
FPGA ASIC difference
FPGA Application
Difference between Microprocessor
and FPGA
cryptography
How cryptography work
Network application
FPGA SoC
FPGA SoC
Assignment: Write difference between the
following
• Hardcore FPGA
• Softcore FPGA
Protocol
• UART
• JTAG
• I2C
• SPI
• CAN
Serial vs Parallel Communication
Serial vs Parallel Communication
UART
UART vs USART
UART Working
Serial Communication in Arduino UNO
and Mega
Data Transmission Type
• (a) Simplex
• (b) Half Duplex
• (c) Full Duplex
RS232 UART
UART GSM Interface
UART GPS Interface
JTAG
• JTAG is a Testing protocol
• It use to design and test board after
manufacturing
• It is on-chip instrument for digital Simulation
Joint Test Action Group
JTAG Pins
Daisy-chained JTAG (IEEE 1149.1)
The connector pins are
• TDI (Test Data In)
• TDO (Test Data Out)
• TCK (Test Clock)
• TMS (Test Mode Select)
• TRST (Test Reset) optional.
• Test reset signal is not shown in the image.
JTAG
Daisy-chained JTAG
JTAG Application
JTAG AVR
JTAG FPGA
JTAG Mobile Phone
I2C Protocol
• I²C (Inter-Integrated Circuit) design by Phllips
• It is typically used for attaching lower-speed
peripheral ICs to processors
and microcontrollers in short-distance, intra-
board communication
• Some other vendor use same protocol by name
TWI (Two Wire Interface) or TWSI (Two-Wire
Serial Interface)
I2C Protocol
• I²C uses only two bidirectional open-
drain lines, Serial Data Line (SDA) and Serial
Clock Line (SCL), pulled up with resistors.
Typical voltages used are +5 V or +3.3 V
• It has adress space of 7-bit mean it interface
128 devices
• I²C bus speeds are the 100 kbit/s
I2C Interface
I2C Working
I2C in Arduino
I2C devices
SPI
(Serial Peripheral Interface)
• The Serial Peripheral Interface bus (SPI) is a
synchronous serial communication interface
specification used for short distance
communication.
• SPI devices communicate in full duplex mode.
• The interface was developed by Motorola.
• Typical applications include Secure Digital cards
and LCD.
SPI working
The SPI bus specifies five logic signals:
SCLK: Serial Clock (output from master)
MOSI: Master Output Slave Input, or
Master Out Slave In
(data output from master).
MISO: Master Input Slave Output, or
Master In Slave Out
(data output from slave).
SS: Slave Select
(often active low, output from master).
SPI Animation
Independent slave configuration
• In the independent
slave configuration,
there is an
independent chip
select line for each
slave
Daisy chain configuration
• Only 4 wires are
user to interface
many device
• Sometime use in
place of JTAG
SPI Application
• Sensors: temperature, pressure, ADC, touch
screens, video game controllers
• Control devices: audio codecs, digital
potentiometers, DAC
• Camera lenses: Canon EF lens mount
• Communications: Ethernet
• Memory: flash and EEPROM
• Real-time clocks
• LCD, sometimes even for managing image data
• Any MMC or SD card (including SDIO variant[5])
SPI Example
• SCP1000 Barometric Pressure sensor
SPI Arduino
CAN Bus
• Controller Area Network (CAN bus)
• It is a vehicle bus standard designed to allow
microcontrollers and devices to communicate
with each other in applications without a host
computer
CAN
• The modern automobile may have as many as 70
Electronic Control Units (ECU)
• Typically the biggest processor is the Engine Control
Unit.
• Some of these form independent subsystems, but
communications among others are essential.
Transmission electric power steering
airbags audio systems
antilock power windows
Braking/ABS doors
cruise control mirror adjustment
battery and recharging systems for hybrid/electric cars
CAN Bus
Before CAN Bus: Multi-wire Bus
•Electronic/engine Control Module (ECM)
• Body Control Module (BCM)
CAN Bus
CAN Device
CAN Bus Architecture
CAN Bus Application
CAN Bus Application
Comparing UART, I2C and SPI
• Data Transmission Type
Simplex, Half Duplex and Full Duplex
• Synchronous or Asynchronous
• Master/Slave or Independent
• Applications
Verilog Design Methodologies
Top-down Design Methodology
Bottom-up Design Methodology
Verilog Modules
A module is the basic building block in Verilog
Module Syntax
module <module_name> (<module_terminal_list>);
...
<module internals>
...
...
endmodule
Bottom-up Design Methodology
Example
d Clk Q
0 0 Q0
0 1 0
1 0 Q0
1 1 1
Bottom-up Design Methodology
Example
Bottom-up Design Methodology
Example
Verilog Simulation
Simulink programming
a = 0;
b = 0;
#100; //delay of 100 unit time
a = 0;
b = 1;
#100; //delay of 100 unit time
a = 1;
b = 0;
#100; //delay of 100 unit time
a = 1;
b = 1;
#100; //delay of 100 unit time
Verilog FPGA
Verilog is both a behavioral and a structural
Model(Switch level, Gate level and Dataflow ).
Internals of each module can be defined at four
levels of abstraction, depending on the needs of
the design
• Behavioral or algorithmic level
• Dataflow level
• Gate level
• Switch level
Switch level Modeling
Design using nmos and pmos logics
• pmos (out,data,control);
• cmos (w, datain, ncontrol, pcontrol);
• nmos (w, datain, ncontrol);
• pmos (w, datain, pcontrol);
Gate level Modeling
• Gates provide a much closer one to one mapping
between the actual circuit and the network
model
• Use in Small circuit design
• The and/or gates available in Verilog are shown
below.
and or xor nand nor xnor
• and a1(OUT, IN1, IN2);
• nand na1(OUT, IN1, IN2);
• or or1(OUT, IN1, IN2);
• nor nor1(OUT, IN1, IN2);
Dataflow Modeling
• assign out = in1 & in2;
• assign #10 out = in1 & in2;
// Delay in a continuous assign
Behavioral Modeling
• Design at this level resembles C programming more
than it resembles digital circuit design.
module clock_gen (output reg clock);
Initial //Initialize clock at time zero
clock = 1'b0;
always
#10 clock = ~clock; //Toggle clock every half-cycle
//time period = 20
initial
#1000 $finish; //Finish at 1000 unit clock
endmodule
Behavioral Modeling
• initial : initial blocks execute only once at time
zero (start execution at time zero).
• always : always blocks loop to execute over and
over again; in other words, as the name suggests,
it executes always.
module initial_example();
reg clk,reset,enable,data;
initial
begin
clk = 0;
reset = 0;
enable = 0;
data = 0;
end
endmodule
module always_example();
reg clk,reset,enable,q_in,data;
always @ (posedge clk)
if (reset)
begin
data <= 0;
end
else if (enable)
begin
data <= q_in;
end
endmodule
Blocking vs. Non-blocking
Assignments
Blocking vs. Non-blocking
Assignments
Blocking vs. Non-blocking
Assignments Example
Blocking vs. Non-blocking
Assignments Example

More Related Content

What's hot

Lecture 1 - Introduction to embedded system and Robotics
Lecture 1 - Introduction to embedded system and RoboticsLecture 1 - Introduction to embedded system and Robotics
Lecture 1 - Introduction to embedded system and RoboticsVajira Thambawita
 
Presentation for EEE engineers on Microcontroller by Dilip Kumar Roy
Presentation for EEE engineers on Microcontroller by Dilip Kumar RoyPresentation for EEE engineers on Microcontroller by Dilip Kumar Roy
Presentation for EEE engineers on Microcontroller by Dilip Kumar RoyDilip Kumar Ckt
 
Embedded system (Chapter 2) part A
Embedded system (Chapter 2) part AEmbedded system (Chapter 2) part A
Embedded system (Chapter 2) part AIkhwan_Fakrudin
 
Lect 4 ARM PROCESSOR ARCHITECTURE
Lect 4 ARM PROCESSOR ARCHITECTURELect 4 ARM PROCESSOR ARCHITECTURE
Lect 4 ARM PROCESSOR ARCHITECTUREDr.YNM
 
Introduction to embedded computing and arm processors
Introduction to embedded computing and arm processorsIntroduction to embedded computing and arm processors
Introduction to embedded computing and arm processorsSiva Kumar
 
Microprocessors basics
Microprocessors basicsMicroprocessors basics
Microprocessors basicsDr.YNM
 
PIC-18 Microcontroller
PIC-18 MicrocontrollerPIC-18 Microcontroller
PIC-18 MicrocontrollerASHISH RANJAN
 
Performance Comparison Between x86 and ARM Assembly
Performance Comparison Between x86 and ARM AssemblyPerformance Comparison Between x86 and ARM Assembly
Performance Comparison Between x86 and ARM AssemblyManasa K
 
Arm programmer's model
Arm programmer's modelArm programmer's model
Arm programmer's modelv Kalairajan
 
PIC microcontroller review
PIC microcontroller reviewPIC microcontroller review
PIC microcontroller reviewMohsen Sarakbi
 

What's hot (20)

Unit 4
Unit 4Unit 4
Unit 4
 
Lecture 1 - Introduction to embedded system and Robotics
Lecture 1 - Introduction to embedded system and RoboticsLecture 1 - Introduction to embedded system and Robotics
Lecture 1 - Introduction to embedded system and Robotics
 
Embedded systemsc
Embedded systemscEmbedded systemsc
Embedded systemsc
 
Presentation for EEE engineers on Microcontroller by Dilip Kumar Roy
Presentation for EEE engineers on Microcontroller by Dilip Kumar RoyPresentation for EEE engineers on Microcontroller by Dilip Kumar Roy
Presentation for EEE engineers on Microcontroller by Dilip Kumar Roy
 
Embedded system (Chapter 2) part A
Embedded system (Chapter 2) part AEmbedded system (Chapter 2) part A
Embedded system (Chapter 2) part A
 
Lect 4 ARM PROCESSOR ARCHITECTURE
Lect 4 ARM PROCESSOR ARCHITECTURELect 4 ARM PROCESSOR ARCHITECTURE
Lect 4 ARM PROCESSOR ARCHITECTURE
 
Introduction to embedded computing and arm processors
Introduction to embedded computing and arm processorsIntroduction to embedded computing and arm processors
Introduction to embedded computing and arm processors
 
Microprocessors basics
Microprocessors basicsMicroprocessors basics
Microprocessors basics
 
ARM CORTEX M3 PPT
ARM CORTEX M3 PPTARM CORTEX M3 PPT
ARM CORTEX M3 PPT
 
Unit vi (2)
Unit vi (2)Unit vi (2)
Unit vi (2)
 
PIC
PICPIC
PIC
 
pic 18
pic 18pic 18
pic 18
 
Unit 3 mpmc
Unit 3 mpmcUnit 3 mpmc
Unit 3 mpmc
 
PIC-18 Microcontroller
PIC-18 MicrocontrollerPIC-18 Microcontroller
PIC-18 Microcontroller
 
Pic18f458
Pic18f458Pic18f458
Pic18f458
 
Performance Comparison Between x86 and ARM Assembly
Performance Comparison Between x86 and ARM AssemblyPerformance Comparison Between x86 and ARM Assembly
Performance Comparison Between x86 and ARM Assembly
 
PIC_ARM_AVR
PIC_ARM_AVRPIC_ARM_AVR
PIC_ARM_AVR
 
pic architecture
pic architecturepic architecture
pic architecture
 
Arm programmer's model
Arm programmer's modelArm programmer's model
Arm programmer's model
 
PIC microcontroller review
PIC microcontroller reviewPIC microcontroller review
PIC microcontroller review
 

Similar to EMBEDDED SYSTEM BASICS

IEEE Paper A SystemC AMS Model of an I2C Bus Controller
IEEE Paper A SystemC AMS Model  of an I2C Bus ControllerIEEE Paper A SystemC AMS Model  of an I2C Bus Controller
IEEE Paper A SystemC AMS Model of an I2C Bus ControllerDweapons Art
 
Real Time System Validation using Hardware in Loop (HIL) Digital Platform
Real Time System Validation using Hardware in Loop (HIL) Digital PlatformReal Time System Validation using Hardware in Loop (HIL) Digital Platform
Real Time System Validation using Hardware in Loop (HIL) Digital PlatformSHIMI S L
 
ARDUINO AND ITS PIN CONFIGURATION
 ARDUINO AND ITS PIN  CONFIGURATION ARDUINO AND ITS PIN  CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATIONsoma saikiran
 
underground cable fault location using aruino,gsm&gps
underground cable fault location using aruino,gsm&gps underground cable fault location using aruino,gsm&gps
underground cable fault location using aruino,gsm&gps Mohd Sohail
 
Automatic Power Factor Correction Using Arduino Uno
Automatic Power Factor Correction Using Arduino UnoAutomatic Power Factor Correction Using Arduino Uno
Automatic Power Factor Correction Using Arduino UnoVineetKumar508
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming FamiliarizationAmit Kumer Podder
 
Galil rio catalog
Galil rio catalogGalil rio catalog
Galil rio catalogElectromate
 
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...OPAL-RT TECHNOLOGIES
 
Peripherals and interfacing
Peripherals  and interfacingPeripherals  and interfacing
Peripherals and interfacingRAMPRAKASHT1
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerRup Chowdhury
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTvasav2204
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering projectvasav2204
 
FIRSTFare 2012 Overview of Electronics
FIRSTFare 2012 Overview of ElectronicsFIRSTFare 2012 Overview of Electronics
FIRSTFare 2012 Overview of ElectronicsOregon FIRST Robotics
 
An Overview on Programmable System on Chip: PSoC-5
An Overview on Programmable System on Chip: PSoC-5An Overview on Programmable System on Chip: PSoC-5
An Overview on Programmable System on Chip: PSoC-5Premier Farnell
 
Microcontroller from basic_to_advanced
Microcontroller from basic_to_advancedMicrocontroller from basic_to_advanced
Microcontroller from basic_to_advancedImran Sheikh
 

Similar to EMBEDDED SYSTEM BASICS (20)

IEEE Paper A SystemC AMS Model of an I2C Bus Controller
IEEE Paper A SystemC AMS Model  of an I2C Bus ControllerIEEE Paper A SystemC AMS Model  of an I2C Bus Controller
IEEE Paper A SystemC AMS Model of an I2C Bus Controller
 
Real Time System Validation using Hardware in Loop (HIL) Digital Platform
Real Time System Validation using Hardware in Loop (HIL) Digital PlatformReal Time System Validation using Hardware in Loop (HIL) Digital Platform
Real Time System Validation using Hardware in Loop (HIL) Digital Platform
 
ARDUINO AND ITS PIN CONFIGURATION
 ARDUINO AND ITS PIN  CONFIGURATION ARDUINO AND ITS PIN  CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
 
underground cable fault location using aruino,gsm&gps
underground cable fault location using aruino,gsm&gps underground cable fault location using aruino,gsm&gps
underground cable fault location using aruino,gsm&gps
 
Automatic Power Factor Correction Using Arduino Uno
Automatic Power Factor Correction Using Arduino UnoAutomatic Power Factor Correction Using Arduino Uno
Automatic Power Factor Correction Using Arduino Uno
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming Familiarization
 
Intro to IO-Link
Intro to IO-LinkIntro to IO-Link
Intro to IO-Link
 
Galil rio catalog
Galil rio catalogGalil rio catalog
Galil rio catalog
 
Parth xyz
Parth xyzParth xyz
Parth xyz
 
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...
OPAL-RT RT13 Conference: Rapid control prototyping solutions for power electr...
 
Peripherals and interfacing
Peripherals  and interfacingPeripherals  and interfacing
Peripherals and interfacing
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontroller
 
Badal sharma
Badal sharmaBadal sharma
Badal sharma
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECT
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering project
 
FIRSTFare 2012 Overview of Electronics
FIRSTFare 2012 Overview of ElectronicsFIRSTFare 2012 Overview of Electronics
FIRSTFare 2012 Overview of Electronics
 
An Overview on Programmable System on Chip: PSoC-5
An Overview on Programmable System on Chip: PSoC-5An Overview on Programmable System on Chip: PSoC-5
An Overview on Programmable System on Chip: PSoC-5
 
Microcontroller from basic_to_advanced
Microcontroller from basic_to_advancedMicrocontroller from basic_to_advanced
Microcontroller from basic_to_advanced
 
Arduino
ArduinoArduino
Arduino
 
Wds
WdsWds
Wds
 

Recently uploaded

Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 

Recently uploaded (20)

Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 

EMBEDDED SYSTEM BASICS