SlideShare uma empresa Scribd logo
1 de 33
Baixar para ler offline
MIXED SIGNAL VLSI TECHNOLOGY BASED SoC
DESIGN FOR TEMPERATURE COMPENSATED
pH MEASUREMENT
S. K. Tilekar1, A. S. Powar1 and B. P. Ladgaonkar1
1- VLSI Design & Research Centre
Post Graduate Department of Electronics
Shankarrao Mohite Mahavidyalaya, Akluj, Dist. Solapur (MS)
t_shivaprasad@rediffmail.com, bladgaonkar@yahoo.com
Abstract
An innovative field of embedded system exhibit wide
spectrum of applications particularly in the field of
instrumentation [1]. The VLSI devices like FPGA and CPLD
provide the reconfigurability for digital design only. Therefore,
for analog parts, the designers have to rely on off chip
hardware. This exhibits constraints in instrumentation [2]. The
emergence of the innovative technology called mixed signal
based VLSI design provides unique solution to above problem
[3]. Cypress semiconductor is performing pioneering job in the
field of mixed signal based programmable system on chip and
vendoring the PSoC5 device with remarkable features [4].
Deploying the features of PSoC5, a system on chip is designed
for temperature compensated pH measurement of the solution.
Keyword: Mixed Signal PSoC5, ADC, Programmable Gain
Amplifier, pH measurement.
Op
amp
LP
filter A/D Microcontroller
Op
ampD/A
Sensor
Digital Outputs
LEDs
Competitive Solutions
Op
amp
LP
filter A/D Microcontroller D/A
Sensor
Digital Outputs
LEDs
PSoC Microcontrollers
 Soft as well as hard IP Cores
 FPGA platform
 Core of the computing device
 Specific IDE for system development
SoB to SoC
Static as well as Dynamic configurability IP Cores
FPGA platform
Advanced microcontroller Core (ARM Core)
Specific IDE for system development
P rogrammable
S ystem
o n
C hip
– Hardware programmability
 Programmable analog blocks
 Programmable digital blocks
 Programmable interconnect
 Programmable I/Os
 Programmable clocks
 Selectable power supply
– Integration as an SoC
 32-bit ARM Cortex-M3 CPU core
 DC to 80 MHz operation
 Flash program memory, up to 256 KB, 100,000 write cycles, 20-year retention, and
multiple security features
 Up to 64 KB SRAM memory
 2-KB electrically erasable programmable read-only memory (EEPROM) memory, 1
million cycles, and 20 years retention
 Low voltage, ultra low power
 Wide operating voltage range: 0.5 V to 5.5 V
 Low power modes including: 2-μA sleep mode
 Versatile I/O system
 28 to 72 I/Os (62 GPIOs, 8 SIOs, 2 USBIOs)
 LCD direct drive from any GPIO, up to 46×16 segments
 All GPIOs configurable as open drain high/low, pull-up/pull-down, High-Z, or strong output
 Configurable GPIO pin state at power-on reset (POR)
 Digital peripherals
 20 to 24 programmable logic device (PLD) based universal digital blocks (UDBs)
 Full-Speed (FS) USB 2.0 12 Mbps using internal oscillator
 Four 16-bit configurable timers, counters, and PWM blocks
 Library of standard peripherals
 Library of advanced peripherals
 Analog peripherals
 1.024 V ±0.1% internal voltage reference across –40°C to +85°C (14 ppm/°C)
 Configurable delta-sigma ADC with 8- to 20-bit resolution
 Two SAR ADCs, each 12-bit at 1 Msps[2]
 80-MHz, 24-bit fixed point digital filter block (DFB) to implement finite impulse
response (FIR) and infinite impulse response (IIR) filters
 Four 8-bit 8 Msps current IDACs or 1-Msps voltage VDACs
 Four comparators with 95-ns response time
 Four uncommitted opamps with 25-mA drive capability
 Four configurable multifunction analog blocks. Example configurations are
programmable gain amplifier (PGA), transimpedance amplifier (TIA), mixer, and
Sample and Hold
 Programming, debug, and trace
 Precision, programmable clocking
 Voltage output ranges: 1.020-V and 4.080-V full scale
 Software- or clock-driven output strobe
 Data source can be CPU, DMA, or Digital components
 Gain steps from 1 to 50
 High input impedance
 Selectable input reference
 Adjustable power settings
 Single or differential connections
 Adjustable between 2 and 32 connections
 Software controlled
 Connections may be pins or internal sources
 No simultaneous connections
 Bidirectional (passive)
 Selectable resolutions, 8 to 20 bits (device dependent)
 Eleven input ranges for each resolution
 Sample rate 10 sps to 384 ksps
 Operational modes:
 Single sample
 Multi-sample
 Continuous mode
 Multi-sample (Turbo)
 High input impedance input buffer
 Selectable input buffer gain (1, 2, 4, 8) or input buffer
bypass
 Multiple internal or external reference options
 Automatic power configuration
 Up to four run-time ADC configurations
 Implements the industry-standard Hitachi HD44780 LCD display Driver
chip protocol
 Requires only seven I/O pins on one I/O port
 Contains built-in character editor to create user-defined
Custom characters
 Supports horizontal and vertical bar graphs
 Linear current output: 1 μA/K
 Wide temperature range: −55°C to +150°C
 2-terminal device: voltage in/current out
 Laser trimmed to ±0.5°C calibration accuracy (AD590M)
 Excellent linearity: ±0.3°C over full range (AD590M)
 Wide power supply range: 4 V to 30 V
 Sensor isolation from case
 Low cost
1) The visual method
2) The photometric method
3) The potentiometric method
E = Eo – K Tk pH
Nernst Factor
K = 0.19841 (273.15+T oC)
Execute boot program:
--initialise general purpose resources;
--configure application specific modules;
--initialise run time environment;
--disable interrupt;
call main application routine;
Void main()
{
Start system timers;
Initialise application specific modules;
Initialise global variables;
Initialise application specific channels;
Enable interrupts;
While(1)
{
Wait for events(Enabled interrupts);
Read values from input channels;
Execute control procedure & compute
actuation data;
output actuation data to output
channels;
}
}
B) Application programme routine
A) Boot programme algorithm
STRUCTURE OF FIRMWARE
#include <device.h>
#include <stdio.h>
float pH_Input_Signal();
float Temp_Input_Signal();
void soft_delay(unsigned int count);
int i=1,j=1;
float result=0,pH_Result,Average_pH,pH_value,pH_Temp_Copensated,pH_valueDirect;
float Temp_Result,Temp_value,Average_Temp,Temp_Calibrated;
void main()
{
char pH_Str[5]={'0'};
PGA_1_Start(); PGA_2_Start(); VDAC8_1_Start(); LCD_Char_1_Start();
ADC_DelSig_1_Start(); char Temp_Str[4]={'0'}; AMuxSeq_1_Start();
while(1)
{
AMuxSeq_1_Next(); LCD_Char_1_Position(0,0); LCD_Char_1_PrintString("T:");
Temp_Result=Temp_Input_Signal(); Temp_value = Temp_Result-273;
Temp_Calibrated=(Temp_value+0.7503)/1.0377;
LCD_Char_1_Position(0,2); sprintf(Temp_Str,"%4.2f",Temp_Calibrated);
LCD_Char_1_PrintString(Temp_Str);
MuxSeq_1_Next();
LCD_Char_1_Position(1,0); LCD_Char_1_PrintString("pH:");
pH_Result=pH_Input_Signal();
pH_value = (pH_Result)/(0.19841*(273.15+Temp_Calibrated)); //Nernst equation
LCD_Char_1_Position(1,3); sprintf(pH_Str,"%5.2f",pH_value);
LCD_Char_1_PrintString(pH_Str);
pH_valueDirect = ((pH_Result-24)/59.16); LCD_Char_1_Position(0,9);
sprintf(pH_Str,"%5.2f",pH_valueDirect); LCD_Char_1_PrintString(pH_Str);
} }
float pH_Input_Signal()
{
float total=0,Sampling_Rate=1000;
for(i=1;i<=Sampling_Rate;i++)
{
ADC_DelSig_1_StartConvert();
ADC_DelSig_1_IsEndConversion(ADC_DelSig_1_WAIT_FOR_RESULT);
total=total+ADC_DelSig_1_GetResult16();
soft_delay(1000);
}
Average_pH=((total/Sampling_Rate)*3);
return(Average_pH);
}
float Temp_Input_Signal()
{
float total=0,Sampling_Rate=750;
for(j=1;j<=Sampling_Rate;j++)
{
ADC_DelSig_1_StartConvert();
ADC_DelSig_1_IsEndConversion(ADC_DelSig_1_WAIT_FOR_RESULT);
total=total+ADC_DelSig_1_GetResult16();
soft_delay(2000);
}
Average_Temp=((total/Sampling_Rate)*4);
return(Average_Temp);
}
y = 1.0515x - 3.22
R² = 0.9989
0
20
40
60
80
100
120
0 50 100 150
Temperature in oC from Thermometer
TemperatureinoCfromSystem
Temp Measured
(Thermometer)
Temp Measured
(PSoC)
40 39.94
45 44.94
50 49.97
55 54.93
60 59.95
65 64.95
70 69.91
75 75.01
80 80.01
85 85.02
90 90.41
95 95.52
100 100.56
Temp Measured in o
C
(Thermometer)
Temp dependent
NERNST volt in mV
From system (PSoC)
Temp dependent
NERNST volt in mV
From datasheet
20 58.18 58.16
25 59.17 59.16
30 60.16 60.15
35 61.13 61.14
40 62.13 62.13
45 63.14 63.12
50 64.13 64.12
55 65.12 65.11
60 66.12 66.10
65 67.11 67.09
70 68.09 68.08
75 69.10 69.08
80 70.09 70.07
The system is calibrated to pH scale and
implemented for measurement of temperature compensated
pH of the solution. The pH value shown by the system under
investigation are identical to that of measured by standard
pH meter. Thus SoC designed to measure pH of the solution
is more reliable and accurate.
1) Y. Sukanya, S. Pathapati, “FSK Modem Using PSoC”, International journal of
soft computing and engineering, 2 3 (2012) 451.
2) L.M. Franca-Neto , P. Pardy, M.P. Ly, R. Rangel, S. Suthar, T. Syed, B. Bloechel,
S. Lee, C. Burnett, D. Cho, D. Kau, A. Fazio and K. Soumyanath, “Enabling
High-Performance Mixed-Signal System-on-a-Chip (SoC) in High Performance
Logic CMOS Technology”, Symposium on VLSI Circuits Digest of Technical
Papers, (2002)164-167.
3) L.S.Y. Wong, S. Hossain, A. Ta, J. Edvinsson, D.H. RivasandH. Naas, “A very
low-power CMOS mixedsignal IC for implantable pacemaker applications” IEEE
Journal of Solid-State Circuits, 39 12 (2004) 2446-2456.
4) M. Nagata, J. Nagai, T.Morie and A. Iwata, “Measurements and Analyses
ofSubstrate Noise Waveform in Mixed-Signal ICEnvironment,” IEEE
Transactions on CAD, 19 6 (200) 671-678.
5) K. Makie-Fukuda, T. Kikuchi, T. Matsuura, M. Hotta, “Measurement of digital
noise in mixed-signal integrated circuits”, IEEE Journal of Solid-State Circuits,
30 2 (1995) 87-92.
Research Activities
MRP : 01 Completed
Publications
: International Journals 01
: International Journals (Communicated) 01
: National Journals 01
: National Journals (Communicated) 01
: Proceedings International 02
: Proceedings National 42
Papers presented in conferences
: International 01
: International (Abroad) 01
: National 12

Mais conteúdo relacionado

Mais procurados

Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Deepak Shankar
 
SRAM read and write and sense amplifier
SRAM read and write and sense amplifierSRAM read and write and sense amplifier
SRAM read and write and sense amplifier
Soumyajit Langal
 

Mais procurados (20)

Programmable logic device (PLD)
Programmable logic device (PLD)Programmable logic device (PLD)
Programmable logic device (PLD)
 
Verilog presentation final
Verilog presentation finalVerilog presentation final
Verilog presentation final
 
Ripple Carry Adder
Ripple Carry AdderRipple Carry Adder
Ripple Carry Adder
 
Introduction to FPGAs
Introduction to FPGAsIntroduction to FPGAs
Introduction to FPGAs
 
System On Chip
System On ChipSystem On Chip
System On Chip
 
Vlsi design-manual
Vlsi design-manualVlsi design-manual
Vlsi design-manual
 
Asic design
Asic designAsic design
Asic design
 
Asic design flow
Asic design flowAsic design flow
Asic design flow
 
Introduction to EDA Tools
Introduction to EDA ToolsIntroduction to EDA Tools
Introduction to EDA Tools
 
Smart traffic light controller using verilog
Smart traffic light controller using verilogSmart traffic light controller using verilog
Smart traffic light controller using verilog
 
SRAM
SRAMSRAM
SRAM
 
SOC design
SOC design SOC design
SOC design
 
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
 
FPGAs : An Overview
FPGAs : An OverviewFPGAs : An Overview
FPGAs : An Overview
 
Verilog Tutorial - Verilog HDL Tutorial with Examples
Verilog Tutorial - Verilog HDL Tutorial with ExamplesVerilog Tutorial - Verilog HDL Tutorial with Examples
Verilog Tutorial - Verilog HDL Tutorial with Examples
 
VLSI routing
VLSI routingVLSI routing
VLSI routing
 
Digital System Design and FPGA
Digital System Design and FPGADigital System Design and FPGA
Digital System Design and FPGA
 
Designing of 8 BIT Arithmetic and Logical Unit and implementing on Xilinx Ver...
Designing of 8 BIT Arithmetic and Logical Unit and implementing on Xilinx Ver...Designing of 8 BIT Arithmetic and Logical Unit and implementing on Xilinx Ver...
Designing of 8 BIT Arithmetic and Logical Unit and implementing on Xilinx Ver...
 
SRAM read and write and sense amplifier
SRAM read and write and sense amplifierSRAM read and write and sense amplifier
SRAM read and write and sense amplifier
 
Verilog hdl
Verilog hdlVerilog hdl
Verilog hdl
 

Semelhante a MIXED SIGNAL VLSI TECHNOLOGY BASED SoC DESIGN FOR TEMPERATURE COMPENSATED pH MEASUREMENT

Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...
researchinventy
 
Research Inventy: International Journal of Engineering and Science
Research Inventy: International Journal of Engineering and ScienceResearch Inventy: International Journal of Engineering and Science
Research Inventy: International Journal of Engineering and Science
researchinventy
 
A 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system forA 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system for
Alexander Decker
 
A 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system forA 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system for
Alexander Decker
 

Semelhante a MIXED SIGNAL VLSI TECHNOLOGY BASED SoC DESIGN FOR TEMPERATURE COMPENSATED pH MEASUREMENT (20)

Psoc3 text book
Psoc3 text book Psoc3 text book
Psoc3 text book
 
Bioinstrumentation Deploying AMS Technology
Bioinstrumentation Deploying AMS TechnologyBioinstrumentation Deploying AMS Technology
Bioinstrumentation Deploying AMS Technology
 
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
 
Scaling Down Instrumentation Deploying Analog Mixed Signal Technology
Scaling Down Instrumentation Deploying Analog Mixed Signal TechnologyScaling Down Instrumentation Deploying Analog Mixed Signal Technology
Scaling Down Instrumentation Deploying Analog Mixed Signal Technology
 
Introduction of 16-Bit Automotive Microcontrollers S12XE
Introduction of 16-Bit Automotive Microcontrollers S12XEIntroduction of 16-Bit Automotive Microcontrollers S12XE
Introduction of 16-Bit Automotive Microcontrollers S12XE
 
Low cost embedded system
Low cost embedded systemLow cost embedded system
Low cost embedded system
 
Introduction to Stellaris Family Microcontrollers
Introduction to Stellaris Family MicrocontrollersIntroduction to Stellaris Family Microcontrollers
Introduction to Stellaris Family Microcontrollers
 
Course material msp430-for_automatic_control
Course material msp430-for_automatic_controlCourse material msp430-for_automatic_control
Course material msp430-for_automatic_control
 
PC based oscilloscope
PC based oscilloscopePC based oscilloscope
PC based oscilloscope
 
Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...
 
Research Inventy: International Journal of Engineering and Science
Research Inventy: International Journal of Engineering and ScienceResearch Inventy: International Journal of Engineering and Science
Research Inventy: International Journal of Engineering and Science
 
Mixed Signal PSoC based System
Mixed Signal PSoC based SystemMixed Signal PSoC based System
Mixed Signal PSoC based System
 
Rohan Narula_Resume
Rohan Narula_ResumeRohan Narula_Resume
Rohan Narula_Resume
 
A 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system forA 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system for
 
A 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system forA 32 channel modular multi input data acquisition system for
A 32 channel modular multi input data acquisition system for
 
Doc32059
Doc32059Doc32059
Doc32059
 
32059 sistem
32059 sistem32059 sistem
32059 sistem
 
final report
final reportfinal report
final report
 
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
 
STM32 MCU Family
STM32 MCU FamilySTM32 MCU Family
STM32 MCU Family
 

Último

Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
ssuserdda66b
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Último (20)

Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 

MIXED SIGNAL VLSI TECHNOLOGY BASED SoC DESIGN FOR TEMPERATURE COMPENSATED pH MEASUREMENT

  • 1.
  • 2. MIXED SIGNAL VLSI TECHNOLOGY BASED SoC DESIGN FOR TEMPERATURE COMPENSATED pH MEASUREMENT S. K. Tilekar1, A. S. Powar1 and B. P. Ladgaonkar1 1- VLSI Design & Research Centre Post Graduate Department of Electronics Shankarrao Mohite Mahavidyalaya, Akluj, Dist. Solapur (MS) t_shivaprasad@rediffmail.com, bladgaonkar@yahoo.com
  • 3. Abstract An innovative field of embedded system exhibit wide spectrum of applications particularly in the field of instrumentation [1]. The VLSI devices like FPGA and CPLD provide the reconfigurability for digital design only. Therefore, for analog parts, the designers have to rely on off chip hardware. This exhibits constraints in instrumentation [2]. The emergence of the innovative technology called mixed signal based VLSI design provides unique solution to above problem [3]. Cypress semiconductor is performing pioneering job in the field of mixed signal based programmable system on chip and vendoring the PSoC5 device with remarkable features [4]. Deploying the features of PSoC5, a system on chip is designed for temperature compensated pH measurement of the solution. Keyword: Mixed Signal PSoC5, ADC, Programmable Gain Amplifier, pH measurement.
  • 5. Op amp LP filter A/D Microcontroller D/A Sensor Digital Outputs LEDs PSoC Microcontrollers
  • 6.  Soft as well as hard IP Cores  FPGA platform  Core of the computing device  Specific IDE for system development SoB to SoC
  • 7. Static as well as Dynamic configurability IP Cores FPGA platform Advanced microcontroller Core (ARM Core) Specific IDE for system development P rogrammable S ystem o n C hip
  • 8. – Hardware programmability  Programmable analog blocks  Programmable digital blocks  Programmable interconnect  Programmable I/Os  Programmable clocks  Selectable power supply – Integration as an SoC
  • 9.  32-bit ARM Cortex-M3 CPU core  DC to 80 MHz operation  Flash program memory, up to 256 KB, 100,000 write cycles, 20-year retention, and multiple security features  Up to 64 KB SRAM memory  2-KB electrically erasable programmable read-only memory (EEPROM) memory, 1 million cycles, and 20 years retention  Low voltage, ultra low power  Wide operating voltage range: 0.5 V to 5.5 V  Low power modes including: 2-μA sleep mode  Versatile I/O system  28 to 72 I/Os (62 GPIOs, 8 SIOs, 2 USBIOs)  LCD direct drive from any GPIO, up to 46×16 segments  All GPIOs configurable as open drain high/low, pull-up/pull-down, High-Z, or strong output  Configurable GPIO pin state at power-on reset (POR)  Digital peripherals  20 to 24 programmable logic device (PLD) based universal digital blocks (UDBs)  Full-Speed (FS) USB 2.0 12 Mbps using internal oscillator  Four 16-bit configurable timers, counters, and PWM blocks  Library of standard peripherals  Library of advanced peripherals
  • 10.  Analog peripherals  1.024 V ±0.1% internal voltage reference across –40°C to +85°C (14 ppm/°C)  Configurable delta-sigma ADC with 8- to 20-bit resolution  Two SAR ADCs, each 12-bit at 1 Msps[2]  80-MHz, 24-bit fixed point digital filter block (DFB) to implement finite impulse response (FIR) and infinite impulse response (IIR) filters  Four 8-bit 8 Msps current IDACs or 1-Msps voltage VDACs  Four comparators with 95-ns response time  Four uncommitted opamps with 25-mA drive capability  Four configurable multifunction analog blocks. Example configurations are programmable gain amplifier (PGA), transimpedance amplifier (TIA), mixer, and Sample and Hold  Programming, debug, and trace  Precision, programmable clocking
  • 11.
  • 12.
  • 13.  Voltage output ranges: 1.020-V and 4.080-V full scale  Software- or clock-driven output strobe  Data source can be CPU, DMA, or Digital components
  • 14.  Gain steps from 1 to 50  High input impedance  Selectable input reference  Adjustable power settings
  • 15.  Single or differential connections  Adjustable between 2 and 32 connections  Software controlled  Connections may be pins or internal sources  No simultaneous connections  Bidirectional (passive)
  • 16.  Selectable resolutions, 8 to 20 bits (device dependent)  Eleven input ranges for each resolution  Sample rate 10 sps to 384 ksps  Operational modes:  Single sample  Multi-sample  Continuous mode  Multi-sample (Turbo)  High input impedance input buffer  Selectable input buffer gain (1, 2, 4, 8) or input buffer bypass  Multiple internal or external reference options  Automatic power configuration  Up to four run-time ADC configurations
  • 17.
  • 18.  Implements the industry-standard Hitachi HD44780 LCD display Driver chip protocol  Requires only seven I/O pins on one I/O port  Contains built-in character editor to create user-defined Custom characters  Supports horizontal and vertical bar graphs
  • 19.  Linear current output: 1 μA/K  Wide temperature range: −55°C to +150°C  2-terminal device: voltage in/current out  Laser trimmed to ±0.5°C calibration accuracy (AD590M)  Excellent linearity: ±0.3°C over full range (AD590M)  Wide power supply range: 4 V to 30 V  Sensor isolation from case  Low cost
  • 20. 1) The visual method 2) The photometric method 3) The potentiometric method
  • 21. E = Eo – K Tk pH Nernst Factor K = 0.19841 (273.15+T oC)
  • 22. Execute boot program: --initialise general purpose resources; --configure application specific modules; --initialise run time environment; --disable interrupt; call main application routine; Void main() { Start system timers; Initialise application specific modules; Initialise global variables; Initialise application specific channels; Enable interrupts; While(1) { Wait for events(Enabled interrupts); Read values from input channels; Execute control procedure & compute actuation data; output actuation data to output channels; } } B) Application programme routine A) Boot programme algorithm STRUCTURE OF FIRMWARE
  • 23. #include <device.h> #include <stdio.h> float pH_Input_Signal(); float Temp_Input_Signal(); void soft_delay(unsigned int count); int i=1,j=1; float result=0,pH_Result,Average_pH,pH_value,pH_Temp_Copensated,pH_valueDirect; float Temp_Result,Temp_value,Average_Temp,Temp_Calibrated;
  • 24. void main() { char pH_Str[5]={'0'}; PGA_1_Start(); PGA_2_Start(); VDAC8_1_Start(); LCD_Char_1_Start(); ADC_DelSig_1_Start(); char Temp_Str[4]={'0'}; AMuxSeq_1_Start(); while(1) { AMuxSeq_1_Next(); LCD_Char_1_Position(0,0); LCD_Char_1_PrintString("T:"); Temp_Result=Temp_Input_Signal(); Temp_value = Temp_Result-273; Temp_Calibrated=(Temp_value+0.7503)/1.0377; LCD_Char_1_Position(0,2); sprintf(Temp_Str,"%4.2f",Temp_Calibrated); LCD_Char_1_PrintString(Temp_Str); MuxSeq_1_Next(); LCD_Char_1_Position(1,0); LCD_Char_1_PrintString("pH:"); pH_Result=pH_Input_Signal(); pH_value = (pH_Result)/(0.19841*(273.15+Temp_Calibrated)); //Nernst equation LCD_Char_1_Position(1,3); sprintf(pH_Str,"%5.2f",pH_value); LCD_Char_1_PrintString(pH_Str); pH_valueDirect = ((pH_Result-24)/59.16); LCD_Char_1_Position(0,9); sprintf(pH_Str,"%5.2f",pH_valueDirect); LCD_Char_1_PrintString(pH_Str); } }
  • 27.
  • 28. y = 1.0515x - 3.22 R² = 0.9989 0 20 40 60 80 100 120 0 50 100 150 Temperature in oC from Thermometer TemperatureinoCfromSystem
  • 29. Temp Measured (Thermometer) Temp Measured (PSoC) 40 39.94 45 44.94 50 49.97 55 54.93 60 59.95 65 64.95 70 69.91 75 75.01 80 80.01 85 85.02 90 90.41 95 95.52 100 100.56
  • 30. Temp Measured in o C (Thermometer) Temp dependent NERNST volt in mV From system (PSoC) Temp dependent NERNST volt in mV From datasheet 20 58.18 58.16 25 59.17 59.16 30 60.16 60.15 35 61.13 61.14 40 62.13 62.13 45 63.14 63.12 50 64.13 64.12 55 65.12 65.11 60 66.12 66.10 65 67.11 67.09 70 68.09 68.08 75 69.10 69.08 80 70.09 70.07
  • 31. The system is calibrated to pH scale and implemented for measurement of temperature compensated pH of the solution. The pH value shown by the system under investigation are identical to that of measured by standard pH meter. Thus SoC designed to measure pH of the solution is more reliable and accurate.
  • 32. 1) Y. Sukanya, S. Pathapati, “FSK Modem Using PSoC”, International journal of soft computing and engineering, 2 3 (2012) 451. 2) L.M. Franca-Neto , P. Pardy, M.P. Ly, R. Rangel, S. Suthar, T. Syed, B. Bloechel, S. Lee, C. Burnett, D. Cho, D. Kau, A. Fazio and K. Soumyanath, “Enabling High-Performance Mixed-Signal System-on-a-Chip (SoC) in High Performance Logic CMOS Technology”, Symposium on VLSI Circuits Digest of Technical Papers, (2002)164-167. 3) L.S.Y. Wong, S. Hossain, A. Ta, J. Edvinsson, D.H. RivasandH. Naas, “A very low-power CMOS mixedsignal IC for implantable pacemaker applications” IEEE Journal of Solid-State Circuits, 39 12 (2004) 2446-2456. 4) M. Nagata, J. Nagai, T.Morie and A. Iwata, “Measurements and Analyses ofSubstrate Noise Waveform in Mixed-Signal ICEnvironment,” IEEE Transactions on CAD, 19 6 (200) 671-678. 5) K. Makie-Fukuda, T. Kikuchi, T. Matsuura, M. Hotta, “Measurement of digital noise in mixed-signal integrated circuits”, IEEE Journal of Solid-State Circuits, 30 2 (1995) 87-92.
  • 33. Research Activities MRP : 01 Completed Publications : International Journals 01 : International Journals (Communicated) 01 : National Journals 01 : National Journals (Communicated) 01 : Proceedings International 02 : Proceedings National 42 Papers presented in conferences : International 01 : International (Abroad) 01 : National 12