Embedded Systems Lab Manual-Sem-I
Embedded Systems Lab Manual-Sem-I
Embedded Systems Lab Manual-Sem-I
LABORATORY MANUAL
M. Tech – I Year – I Sem. (VLSI & Embedded Systems)
2022-2023
To strengthen the department into a centre of academic excellence with focus on advanced
technologies & relevant research by delivering the best quality technical education to the
students, so as to meet the current and future challenges along with emphasis on moral and
ethical values.
Mission
To create and enrich academic environment with essential resources, so as to train and mould
students in active learning & critical thinking with innovative ideas, so as to solve real-world
problems in the field of Electrical & Electronics Engineering.
To motivate and strengthen the faculty to practice effective teaching & learning process and
involve in advanced research & development work.
To enhance industry interaction and initiate best consultancy services.
Quality Policy
To develop, maintain and update global standards of excellence in all our areas of academic &
research activities and facilities so as to impart a state of the art & value based technical
education to the students commensurate with the rapidly changing industry needs.
To continuously adopt and implement concurrent & commensurate faculty development
programmes towards achieving the institution’s goals and objectives.
MALLA REDDY COLLEGE OF ENGINEERING & TECHNOLOGY
(Autonomous Institution – UGC, Govt. of India)
(Affiliated to JNTU, Hyderabad, Approved by AICTE - Accredited by NBA & NAAC – ‘A’ Grade - ISO 9001:2015 Certified)
Maisammaguda, Dhulapally (Post Via. Kompally), Secunderabad – 500100, Telangana State, India.
PSO 1.
To acquire competency in areas of VLSI and Embedded Systems, Design, Testing, Verification IC
Fabrication and prototype development with focus on applications.
PSO 2.
To integrate multiple sub-systems to develop System on Chip, optimize its performance and
excel in industry sectors related to VLSI/ Embedded domain and to develop a start-up system.
LAB 2: ES LAB
Note:
The following programs are to be implemented on ARM based Processors/Equivalent.
Minimum of 10 programs are to be conducted.
Timer functionality:
#include <LPC214X.H>
main()
{
// T0PR = 0x00000003;
PINSEL0=0x00000020;
T0CCR=0x00000004;
T0TCR = 0x00000001;
//T0MCR = 0x00000020;
//T0MR1 = 0X0000000f;
while(1);
}
Counter functionality:
#include <LPC214X.H>
void main()
{
PINSEL0=0X00000020;
T0TCR=0X01;
T0CTCR=0X03;
}