Non-Inverting Level Shifter : +/-5V signal into a 0 to 3.3V
With portable battery-operated devices continuing to add functionality while shrinking in size, printed-circuit-board real estate becomes increasingly valuable. Single-supply circuitry can help by saving space and cost. Adding audio or video, however, may pose a problem because those signals are usually referenced to ground, and most single-supply ICs must be configured for signals above ground.
Therefore, the circuit must shift most audio or video input signals to an appropriate level above ground. Also, polarity must be preserved for video signals. Unfortunately, using a single-supply voltage while preserving signal polarity is impossible with traditional op-amp level shifters, which require two op amps and a negative rail.
The circuit in Figure 1 meets all of these requirements, level-shifting a ground-referenced signal with one op amp while running on a single-supply voltage. The op amp’s non-inverting summing configuration creates the level-shifted output by summing a reference voltage with the input signal. A standard potentiometer with a bypass capacitor sets the reference voltage, but any voltage reference able to provide enough bias current for the op amp and summing resistors will suffice.
This example circuit includes the 75-Ω termination resistors required in a standard video application. The op amp shown features a small footprint plus the wide bandwidth needed for video. Figure 2 shows the circuit’s operation, shifting a 10-MHz ground-referenced input signal by +1.5 V.


http://www.daycounter.com/Calculators/Op-Amp/NonInverting-Op-Amp-Resistor-Calculator.phtml
A common engineering task is to convert a positive to negative signal into a range suitable for a single supply ADC.
This circuit will convert a +/-5V signal into a 0 to 3.3V signal so that it can be sampled by an ADC on a 3.3V microprocessor.

Equations:
A = (R4/R1) x (R1+R2)/(R3+R4)
If R1= R3, and R2=R4, then
A= (R4/R1)
We want to convert a 10Vpp signal to a 3.3V signal so the gain should be 1/3. We can choose R4 to be 33K and R1 to be 100K.
Now we need to choose the positive offset such that the signal is centered at 1.6V.
The gain off the offset voltage is:
Aoffset= (R2+R1)/R1 x R3/(R3+R4) = R3/R1.
For the previous resistor values, the gain is 1 since R3=R1, and so we use an offset voltage of 1.6V.
http://www.daycounter.com/Calculators/Op-Amp/NonInverting-Op-Amp-Resistor-Calculator.phtml

This calculator determines the bias and feedback resistors for a non-inverting op-amp, given the gain and desired output bias point.
There are many free parameters to the design so enter the value of R1, which will scale the other resistors.
Use V1 as the input for the inverting Op-Amp, and V2 as a voltage offset if needed.
Set V2 to zero if no offset is required.
To use the calculator you first need to determine the desired gain of the ac signal,
and the quiescent output voltage (the value when the AC input signal is zero).
R4 injects a non-zero V2 voltage component into the circuit and correspondingly offset Vout.
Another way of looking at it is, if V2 is zero and the DC component of V1 is zero then Vout will also be zero.
The amplified output signal will ride on the quiescent output voltage.
Non-Inverting Level Shifter : +/-5V signal into a 0 to 3.3V的更多相关文章
- Level shifting a +/- 2.5V signal to 0 - 5V
Google : Op-Amp Level Shifter Level shifting a +/- 2.5V signal to 0 - 5V I have a front end module t ...
- Retimer、Redriver(Level Shifter)
重定时器Retimer和驱动器Redriver9(Level Shifter) 在高速串行通道的信号传输中,需要使用Redriver 和Retimer来保证信号传输的质量. Redriver,可以重新 ...
- 5V and 3V Level Translators
http://www.daycounter.com/Circuits/Level-Translators/Level-Translators.phtml Interfacing 5V and 3V l ...
- XBee Level Shifting
http://www.faludi.com/bwsn/xbee-level-shifting/ The XBee communication (RX/TX) pins definitely opera ...
- linux内核剖析(九)进程间通信之-信号signal
信号及信号来源 什么是信号 信号是UNIX和Linux系统响应某些条件而产生的一个事件,接收到该信号的进程会相应地采取一些行动.通常信号是由一个错误产生的.但它们还可以作为进程间通信或修改行为的一种方 ...
- 低功耗设计技术--Multi VDD--Level shifter
本文转自:自己的微信公众号<集成电路设计及EDA教程> 前面的推文中我们分别介绍了低功耗设计中的Multi-VDD技术以及门控电源技术.在实际的低功耗设计中,门控电源技术中也常常结合Mul ...
- slot signal机制
有一个比较 经典的实现:http://sigslot.sourceforge.net/很精简的 signal slot的实现,跨平台.webrtc项目在用,我在自己项目里也用了.这个源码有2000多行 ...
- signal()函数
转自:http://blog.csdn.net/sddzycnqjn/article/details/7285760 1. 信号概念 信号是进程在运行过程中,由自身产生或由进程外部发过来的消息(事件) ...
- 版本和API Level对照表
版本和API Level对照表 Code name Version API level (no code name) 1.0 API level 1 (no code name) 1.1 API le ...
随机推荐
- Centos之链接命令
链接命令:ln (link) ln -s [源文件] [目标文件] 功能描述:生成链接文件 选项: -s 创建软链接 硬链接特征: 1,拥有相同的i节点和存储block块,可以看作是同一个文件: 2 ...
- InterSystems Ensemble学习笔记(一) Ensemble介绍及安装
系列目录 InterSystems Ensemble学习笔记(一) Ensemble介绍及安装InterSystems Ensemble学习笔记(二) Ensemble创建镜像, 实现自动故障转移 一 ...
- hadoop 初探之第二篇(杂谈)
NameNode:名称节点,主要功能在于实现保存文件元数据,这些元数据直接保存在内存中,为了保证元数据的持久性,而也会周期性的同步到磁盘上去.磁盘上的数据通常被称为元数据的映像数据 image fil ...
- 面试题46:求1+2+ …… +n
题目:求1+2+…+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字以及条件判断语句(A?B:C). 通常求1+2+…+n除了用公式n(n+1)/2之外,无外 ...
- ASP.NET:MVC模板化机制
模版化的核心是定制ViewEngine.完整的模板化必须实现3个功能:1.网站的多套模版(razor)支持 2.模版的多样式(style)支持. 3.按需实现模版:没有实现的加载默认模版. 我们除了要 ...
- thinkphp5.0与thinkphp3.2之间的区别
5.0版本和之前版本的差异较大,本篇对熟悉3.2版本的用户给出了一些5.0的主要区别. URL和路由 5.0的URL访问不再支持普通URL模式,路由也不支持正则路由定义,而是全部改为规则路由配合变量规 ...
- 基于Laravel开发博客应用系列 —— 十分钟搭建博客系统
1.创建文章数据表及其模型(0:00~2:30) 我们已经在上一节中为博客项目完成了大部分准备工作,现在首先要做的就是为这个项目创建一个新的文章表 posts及该表对应的模型类 Post,使用如下Ar ...
- PHP老师没教过你的那些知识点
另类的写法有惊喜 我们在阅读某些源代码的时候会发现有一种另类的写法,比如 //异常写法 if(false == $result) //正常写法 if($result == false) 其实这是一 ...
- Kubernetes(k8s)集群部署(k8s企业级Docker容器集群管理)系列之部署master/node节点组件(四)
0.前言 整体架构目录:ASP.NET Core分布式项目实战-目录 k8s架构目录:Kubernetes(k8s)集群部署(k8s企业级Docker容器集群管理)系列目录 1.部署master组件 ...
- python lambda简单介绍
python lambda 在python中,如果想要创建函数需要使用关键字def,而如果想要创建匿名函数,就需要使用lambda. lambda创建的函数和def创建的函数有什么区别? def创建的 ...