欢迎访问ic37.com |
会员登录 免费注册
发布采购

AN4025 参数 Datasheet PDF下载

AN4025图片预览
型号: AN4025
PDF下载: 下载PDF文件 查看货源
内容描述: 实现一个血糖仪和血压计医疗器械 [Implementing a Glucometer and Blood Pressure Monitor Medical Devices]
分类和应用: 医疗器械
文件页数/大小: 31 页 / 2828 K
品牌: FREESCALE [ Freescale ]
 浏览型号AN4025的Datasheet PDF文件第1页浏览型号AN4025的Datasheet PDF文件第2页浏览型号AN4025的Datasheet PDF文件第3页浏览型号AN4025的Datasheet PDF文件第5页浏览型号AN4025的Datasheet PDF文件第6页浏览型号AN4025的Datasheet PDF文件第7页浏览型号AN4025的Datasheet PDF文件第8页浏览型号AN4025的Datasheet PDF文件第9页  
Blood Glucose Monitor  
Figure 4. Chip schematic  
Use an amperometric determination method with a constant potential of 0.3V used in the portable meter. The current response  
of the sensor is linear with a glucose concentration in the range of 5 to 30 mmol/ L and a fast response time of about 20 seconds.  
3 Blood Glucose Monitor  
This section explains how to develop a medical device for measuring the blood glucose level. This device operates placing a  
relatively small drop of blood on a disposable test strip that interfaces with a digital meter. Within seconds the level of blood  
glucose is shown on the liquid crystal display (LCD).  
3.1 Transimpedance Amplifier  
The transimpedance amplier consists of an operational amplier and a feedback resistor between the output and the negative  
input. The positive input can be connected to either GND or used for offset calibration.  
3.2 Glucose Software Overview  
The voltage source is always at 3.3 V. To start taking ADC samples, the source voltage must go to 0.3 V. The connection  
between the source and the application contains a voltage regulator of 3.3 V. You can provide voltage to the system by using  
a 9 V battery.  
TakeSample function The function congures the ADC module and starts conversion. It compares the ADC conversion  
obtained with Value1which is 60. If the ADC conversion is lower than this value, the MCU goes into stop mode, and after 20  
seconds sends an error message to the LCD.  
void TakeSample (void)  
{
.
.
.
ADC_Start();  
Strip_CTRL =StripVoltage300mV;  
CountSec=0;  
ADC_Start_conversion (2);  
//0.3V Supply  
Drop=1;  
while(ADC_Get_Newconversion(2)<=Value1)  
{
ADC_Start_conversion (2);  
_Stop;  
if(CountSec==20)  
{
Error(1);  
Option=6;  
Drop=0;  
Implementing a Glucometer and Blood Pressure Monitor Medical Devices, Rev. 1, 4/2010  
4
Freescale Semiconductor, Inc.  
 复制成功!