TX2S中文说明书及应用电路
Jetson TX2 平台适配和启动指南说明书

DA_08477-001 | March 3, 2017Tegra Linux Driver Package for Jetson TX2DOCUMENT CHANGE HISTORYTABLE OF CONTENTS Platform Adaptation and Bring-Up Guide (4)Board Naming (4)Placeholders in the Porting Instructions (5)Pinmux Changes (5)Porting U-Boot (6)Porting the Linux Kernel (7)Power Tree Changes (8)Another Example (8)USB Lane Mapping (9)Required Device Tree Changes (10)Flashing the Build Image (11)Hardware Bring-Up Checklist (11)Before Power-On (11)Initial Power-On (11)Initial Software Flashing (12)Power (12)Power Optimization (12)USB 2.0 PHY (12)USB 3.0 (13)HDMI (13)Audio (13)UART (14)SD Card (SDMMC1) (14)Sensors I2C: General (14)Sensors I2C: Touch Screen (Optional) (14)PEX (Optional) (14)SATA (Optional) (15)Embedded Display(s) (Optional) (15)Imager(s) (Optional) (15)Software Bring-Up Checklist (16)Preparation (16)Bring-up Hardware Validation (16)U-Boot Port and Boot Validation (16)Kernel and Peripherals, Port and Validation (16)System Power and Clocks (17)This document is for software developers whose target is the NVIDIA®Jetson™ TX2 module. It describes how to port the NVIDIA® Tegra® Linux Driver Package and the U-Boot bootloader from NVIDIA® Jetson™ TX2 Developer Kit to other hardware platforms.The examples described include code for the Jetson TX2 Developer Kit (P2771). BOARD NAMINGTo support your board in L4T, you must select a simple lower-case, alpha-numeric name for your board. The name can include dashes (-) or underscores (_) but cannot contain spaces. For example:jetson-tx2p2771-000-500myboardThe name you select appears in:• Filenames and pathnames•U-Boot and Linux kernel source code•User-visible device tree filenamesAdditionally, this name is exposed to the user through the U-Boot command prompt and various Linux kernel proc files.In this document, <board> represents your board name.NVIDIA CONFIDENTIALYou must also select a similarly-constructed vendor name. The same character set rules apply, such as the following example:nvidiaIn this document, <vendor> represents your vendor name.Do not re-use and modify the existing NVIDIA® Jetson™ TX2 DeveloperKit code without selecting and using your own board name. If you donot use your own board name it will not be obvious to Jetson TX2users whether the modified source code supports the original JetsonTX2 Developer Kit board or your board. PLACEHOLDERS IN THE PORTING INSTRUCTIONS Placeholders are used throughout this document, substitute an appropriate value for each placeholder when you enter the commands.•<function> is a functional module name, which may be power-tree, pinmux, sdmmc-drv, keys, comm (Wifi/BT), camera, etc.•<board> is a name you have selected to represent your platform. For example, p2771 is the name of the Jetson TX2 Developer Kit. NVIDIA <board> names use lower case letters.•<version> is a board version number, such as a00. Files for NVIDIA reference boards include a version number. Files for customer platforms are not required to include a version number.•<vendor> is the name of your organization, or the name of the vendor for your board.•<root> is the device that holds root file system for the platform. At present, the supported value is emmc.PINMUX CHANGESIf your board schematic differs from that for Jetson™ TX2 Developer Kit board, you must change the pinmux configuration applied by the software.The Jetson_TX2_customer_pinmux_release.xlsm spreadsheet is provided to:•Show the locations and default pinmux settings•Define the pinmux settings in the source code or device treeThe spreadsheet is available at:https:///embedded/downloadsYou must customize the spreadsheet for the configuration of your board.For information on customizing the configuration files, refer to the Tegra Linux Driver Package Development Guide“MB1 Platform Configuration” and “Configuring Pinmux, GPIO and PAD” topics.PORTING U-BOOTPerform the following actions in the U-Boot source code to add support for your board.1.Copy include/configs/p2771-0000.h to include/configs/<board>.h.2.Edit the set of enabled devices and features in <board>.h as appropriate for yourboard. For example, you must change the following:#define CONFIG_TEGRA_BOARD_STRING "NVIDIA p2771-0000"3.Copy arch/arm/dts/tegra186-p2771-0000-500.dts toarch/arm/dts/tegra186-<board>.dts.4.Edit the set of enabled devices and their parameters (e.g. GPIO and IRQ IDs) integra186-<board>.dts as appropriate for your board.You may need to add, remove, or edit nodes and properties.U-Boot and the Linux kernel do not always use the exact samedevice tree schema (bindings) to represent the same data. Followexamples from U-Boot rather than from the Linux kernel.5.Add tegra186-<board>.dtb to arch/arm/dts/Makefile.6.Copy configs/p2771-0000-500_defconfig toconfigs/<board>_defconfig.7.Edit <board>_defconfig to refer to your board name.8.Edit arch/arm/mach-tegra/tegra186/Kconfig to add target config andKconfig.9.Copy the board/nvidia/p2771-0000/ directory toboard/<vendor>/<board>/.10.Edit all the files in board/<vendor>/<board>/ to refer to your board name ratherthan the p2771-0000. The files in this directory contain many instances of thep2771-0000 board name.11.Edit board/<vendor>/<board>/MAINTAINERS to provide the correct maintainercontact information for your board.12.Edit board/<vendor>/<board>/<board>.c to provide the correct PMICprogramming for your board, if required.PORTING THE LINUX KERNELIt is assumed that you are using the CVM module provided by NVIDIA and that it has not been modified; the eMMC, PMIC, and DDR are the same with the same routing of lines. The modifications you are making are for the CVB baseboard that hosts all the peripherals. Consequently, based on the peripherals present on your baseboard, you can modify the .dts files by disabling/enabling the controllers and changing the supplies.To port the kernel configuration code (the device tree) to your platform, modify one of the distributed configuration files to describe the design of your platform.The configuration files available at:<top>/hardware/nvidia/platform/t18x/<top>/hardware_nvidia/soc/t18xThe final DTB file used is:tegra186-quill-p3310-1000-a00-00-base.dtsBy reading the above file, you see which other .dtsi files are referenced by include statements. Common .dtsi files that may be modified to reflect hardware design changes include:Verify that no other .dts or .dtsi file, including these .dts files, overrides any changes you make.As a best practice, create your own set of .dts files based on the Quill files already present. Rename your newly created files to the name of your board.Note:Use fdtdump or dtc to generate a .dts from the final .dtb file andcheck if your changes have taken effect.The command usage is as follows:dtc -I dtb -O dts tegra186-quill-p3310-1000-a00-00-base.dtb > tegra186-quill-p3310-1000-a00-00-base.dtsfdtdump dts tegra186-quill-p3310-1000-a00-00-base.dtb > tegra186-quill-p3310-1000-a00-00-base.dtsPower Tree ChangesThe Jetson P2597 baseboard has a GPIO expander. Some of the pins on the GPIOexpander are used as a GPIO regulator. One such usage is to enable vbus-2-supplywhich is powered using vdd_usb2_5v GPIO regulator. If your custom board does nothave the vdd_usb2_5v supply, the xhci driver enumeration fails on the target system.To solve this situation, you must:1.Change the supply with battery_reg using the .dtsi file located at:hardware/nvidia/platform/t18x/common/kernel-dts/t18x-common-platforms/tegra186-quill-power-tree-p3310-1000-a00-00.dtsi2.Regenerate the DTB.3.Flash with the correct DTB.The modifications are as follows:pinctrl@3520000 {vbus-0-supply = <&vdd_usb0_5v>; vbus-1-supply = <&vdd_usb1_5v>;vbus-2-supply = <&battery_reg>;vbus-3-supply = <&battery_reg>;vddio-hsic-supply = <&battery_reg>;avdd_usb-supply = <&spmic_sd3>;vclamp_usb-supply = <&spmic_sd2>;avdd_pll_erefeut-supply = <&spmic_sd2>;};Another ExampleIf you wish to:•Disable xhci which is a USB 3.0/USB 2.0 controller, disable the following node.•Change the lane configuration, update the following node.xhci@3530000 {status = "disabled";phys = <&tegra_xusb_padctl TEGRA_PADCTL_PHY_UTMI_P(0)>,<&tegra_xusb_padctl TEGRA_PADCTL_PHY_UTMI_P(1)>,<&tegra_xusb_padctl TEGRA_PADCTL_PHY_USB3_P(1)>;phy-names = "utmi-0", "utmi-1", "usb3-1";};For the detailed information about .dts files, refer to the documentation at Documentation/devicetree/bindings in the NVIDIA released Linux kernel source package.USB LANE MAPPINGUSB 3.0 has 4 super-speed ports. Not all can be used in the same implementation because of lane sharing between PCIE, SATA, and XUSB. Possible combinations for USB 3.0 are as follows.The customer pinmux spreadsheet contains all Jetson TX2 pin names and ball names to represent which ball names are used for the super-speed connector, and the pinmux configuration of those pins.An example configuration is available in the Jetson TX2 OEM Product Design Guide. Each external super-speed connector has both USB 2.0 (DP, DN) and USB 3.0 lines (TX+-, RX+) linked to the connector. A possible exception is where a fixed on-board device is connected to super-speed lines and does not require USB 2.0 compatibility. Required Device Tree ChangesThe following device tree properties must change when USB configuration changes, for example, for one USB 2.0 and one USB 3.0 port used in the xhci controller.Under the XHCI node:•List all UPHY lanes required, for example:phys = <PADCTL_UTMI(0)>, // for USB2.0 port0<PADCTL_USB3(0)>, // for USB3.0 port0•Provide a naming convention to retrieve the above UPHYs from the kernel: phy-names = “utmi-0”, “usb3-0”;Under pinctrl to pinmux node:•Create a node for each UPHY lane, for example:●For usb2.0, usb2-port0 { // node name could be anything•n vidia,lanes = “otg-0”;// Required properties.•n vidia,function = “xusb”;// Optional properties, as per padctrldocumentation, function property is required for USB2.0 port and in this case,it is “xusb”•nvidia,port-cap = “PORT_HOST_ONLY”; // Optional properties and could be “PORT_OTG”●For USB3.0, usb3-port0 {•n vidia,lanes = “usb3-0”; // required property•nvidia,port-cap = “PORT_OTG_CAP”; // required property for lane usb3-0. The above allocations will work when UPHY lanes are owned by each client(xhci/xudc/pcie..).As per the above example:•XHCI must be owned by LAN0 for usb3-0.•Lane allocation can be performed by either ODMDATA or allotted to UPHY to each client in the bpmp-dtb file.•ODM Data: Bit 24 to 28 are used to allocate lanes with Lane3, by default, is allocated to PCIE.•ODMDATA=0x1090000; While flashing for Jetson TX2.Lane allocations are as follows:For the detailed information about UPHY lanes, refer to the documentation at:kernel/t18x/Documentation/devicetree/bindings/pinctrl/nvidia,tegra186-padctl.txtFLASHING THE BUILD IMAGEWhen flashing the build image, use your specific board name. The flashing script uses the configuration present in the <board>.conf file during the flashing process.To flash the build image•Execute the following command.$ sudo ./flash.sh <board> mmcblk0p1HARDWARE BRING-UP CHECKLISTThis section provides a checklist for the platform hardware bring-up process. Before Power-OnInitial Power-OnInitial Software FlashingPowerPower OptimizationUSB 2.0 PHYUSB 3.0HDMIAudioUARTSD Card (SDMMC1)Sensors I2C: GeneralSensors I2C: Touch Screen (Optional)PEX (Optional)SATA (Optional)Embedded Display(s) (Optional)Imager(s) (Optional)SOFTWARE BRING-UP CHECKLISTThis section provides a checklist for the software bring-up process. PreparationBring-up Hardware ValidationU-Boot Port and Boot ValidationKernel and Peripherals, Port and ValidationSystem Power and ClocksNoticeALL NVIDIA DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS, DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY, "MATERIALS") ARE BEING PROVIDED "AS IS." NVIDIA MAKES NO WARRANTIES, EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE MATERIALS, AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OR CONDITION OF TITLE, MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE AND ON-INFRINGEMENT, ARE HEREBY EXCLUDED TO THE MAXIMUM EXTENT PERMITTED BY LAW.Information furnished is believed to be accurate and reliable. However, NVIDIA Corporation assumes no responsibility for the consequences of use of such information or for any infringement of patents or other rights of third parties that may result from its use. No license is granted by implication or otherwise under any patent or patent rights of NVIDIA Corporation. Specifications mentioned in this publication are subject to change without notice. This publication supersedes and replaces all information previously supplied. NVIDIA Corporation products are not authorized for use as critical components in life support devices or systems without express written approval of NVIDIA Corporation.TrademarksNVIDIA, the NVIDIA logo, Tegra, and Jetson are trademarks or registered trademarks of NVIDIA Corporation in the United States and other countries. Other company and product names may be trademarks of the respective companies with which they are associated.Copyright© 2017 NVIDIA Corporation. All rights reserved.。
CTTS说明书2

非常感谢您购买飞世龙机电有限公司的开关,以下注意事项是有关安全的重要内容。
请在使用本产品之前,一定要全部阅读本说明书的注意事项、附属的安装使用说明以及其他附属内容后再正确使用。
请了解开关的相关知识,注意事项以及安全事项后再使用本开关。
本说明书按照安全注意事项危险程度区分为「危险」,「警告」,「注意」。
安装使用错误时可能会发生死亡或重大灾害的紧急情况。
安装使用错误时可能会引起死亡或重大灾害的隐患。
安装使用错误时可能会引起轻伤或小事故的引患。
◆ 搬运时注意事项◆ 安装(适用、连接)时注意事项 ◆ 操作时注意事项目录1.概要 51.1保管1.2搬运2.额定 53.构造 64.设置 62.定格 32.1“CT” TYPE3.设置 43.1 设置及连接3.2 设置3.3 panel加工尺寸3.5 主电路接头尺寸4.组做74.1 手动组做4.2 自动组做5.保修清点116.定期清点127.其他131.使用关于开关的保管、搬运及设置,请在使用前详细阅读说明书,全面熟知开关的知识、安全信息及注意事项后再进行。
1.1保管开关的安装设置是在到达后即时使用,不得已需要进行一定时间的保管时,请留意下面注意事项。
1.1.1 在高温或潮湿的场所对开关功能会有所降低,要在干燥的场所保管。
1.1.2 要避开有灰尘及会产生有害气体的场所,否则会产生腐蚀开关的现象。
1.1.3 开关要放在平坦的场所保管,不要直接接触地面。
1.2搬运1.2.1 搬运开关时,请确认开关是否在“OPEN”状态。
1.2.2 为了避免开关受到冲击,搬运时请轻拿轻放。
2.额定2.1“CT”TYPE备注1,辅助开关的开关容量是:AC110V 5A,AC220V 2.5A,DC110V 0.5A。
3安装安装时请注意以下事项。
3.1设置3.1.1 CTTS的构造特性设计是以固定方向安装而成,如果安装方向发生变化,它的特性会有变化,所以要正确的安装。
3.1.2 根据配线及开关配置现状,在不能正常安装的情况下,请与本公司联系和商谈。
TX-2RX-2五功能遥控集成电路组成无线遥控玩具

TX-2/RX-2五功能遥控集成电路组成无线遥控玩具汽车TX—2B/RX—2B系配套专用遥控集成电路。
它能组成具有五路红外遥控或无线电遥控等功能的独立控制电路,可对遥控玩具汽车、各种家用电器及照明灯等进行遥控。
TX—2/RX—2配套遥控集成电路具有以下特点:(1)采用CM05工艺制造,静态功耗小,外围元件少,电源电压适用范围宽(VCC=2.5~5.OV),工作稳定可靠。
(2)具有五路独立遥控开关控制功能。
由于遥控发射集成电路可输出带载波的编码信号及不带载波的编码信号两种输出信号,所以它与相应的射频电路配合,不仅可实现五路独立的无线电遥控,而且还可方便地实现五路独立的红外遥控。
(3)TX—2具有自动关机功能,既便于遥控发射器的设计,又可节能。
(4)利用多片TX—2与多片RX—2并接,可方便地实现多路(5的倍乘数)遥控。
发射电路TX-2中的1、4、5、6、14脚分别与接收电路RX-2的6、10、11、12、7脚相对。
电参数与引脚功能TX—2B/RX—2B电路的极限电参数如下:电源电压为0.3~5.OV;输人输出电压为(GND—0.3V)~(Vdd+0.3V);工作温度Topr为—10~+65℃;储存温度Tstg为—25~+125℃。
发射电路TX—2的主要电气参数见表l。
接收电路RX—2的主要电气参数见表2。
表1表2TX—2为遥控发射电路,它采用14脚双列直插式塑封装,其引脚排列如图l所示,引脚功能见表3。
图2是其内部功能方框图。
图3是TX—2的典型应用电路。
分别触控独立发射控制端至地,即可发射五种不同的编码信号,其中⑦脚输出的为带载波的编码信号,适合作红外遥控输出。
⑧脚输出的为不带载波的编码信号,适合作无线遥控的调制信号输出。
⑧脚直接与BX—2配合,可组成相应的编、解码电路。
改变、脚外接的Rosc阻值,可改变载波频率及编码脉冲波形输出。
Rosc的选值范围为100~500kΩ。
⑩脚为发射状态指示端,可通过外接发光二极管LED来指示发射状态。
Jetson TX1 和 TX2 电压和电流监控配置应用指南说明书

DA_08564_001 | July 20, 2017 Release 28.1DOCUMENT CHANGE HISTORYNVIDIA® Tegra® Board Support Package for the Jetson TX1 and TX2 module works together with platform hardware to implement a system Electrical Design Point (EDP) management strategy to maximize CPU and GPU performance within system EDP constraints for the platform.Voltage comparator and a current monitor detect under-voltage and over-current scenarios are outlined. When the sensor outputs are asserted, Tegra hardware quickly throttles CPU and GPU clocks as configured by software to reduce the current load. The Jetson module includes on-board power monitor, INA3221, to monitor the voltage and current of the following power rails:④VDD_IN④VDD_GPU④VDD_GPUThe alert outputs of INA3221 include:④ALERT④CRIT④WARNThey are fed into a SOC_THERM input on Tegra. When one or more of those alert outputs are asserted, SOC_THERM hardware reacts to reduce Tegra power consumption and avoid violating the current limits.Configuring the Voltage and Current MonitorThe power monitor accepts the configuration data from the powermon Device Tree source file.The powermon dtsi file for Jetson TX1 is available at:kernel/arch/arm64/boot/dts/tegra210-platforms/tegra210-jetson-cv-powermon-p2180-1000-a00.dtsiThe powermon dtsi file for Jetson TX2 is available at:hardware/nvidia/platform/t18x/common/kernel-dts/t18x-common-platforms/tegra186-quill-p3310-1000-a00-powermon.dtsiThe following code snippet is TX1 powermon dtsi file:i2c@7000c400 {ina3221x: ina3221x@40 {compatible = "ti,ina3221x";reg = <0x40>;ti,trigger-config = <0x7003>;ti,continuous-config = <0x7607>;ti,enable-forced-continuous;#io-channel-cells = <1>;#address-cells = <1>;#size-cells = <0>;status = "disabled";channel@0 {reg = <0x0>;ti,rail-name = "VDD_IN";ti,shunt-resistor-mohm = <20>;ti,current-critical-limit-ma = <2105>;shunt-volt-offset-uv = <&p2180_shuntv_offset>;};channel@1 {reg = <0x1>;ti,rail-name = "VDD_GPU";ti,shunt-resistor-mohm = <10>;shunt-volt-offset-uv = <&p2180_shuntv_offset>;};channel@2 {reg = <0x2>;ti,rail-name = "VDD_CPU";ti,shunt-resistor-mohm = <10>;shunt-volt-offset-uv = <&p2180_shuntv_offset>;};};Where:④The current-critical-limit-ma of channel 0 VDD_IN is calculated from thesystem EDP limit and the Jetson module input voltage.The critical current limit = System EDP limit / VDD_IN voltage④The system EDP limit for the Jetson TX1 module, as part of the Jetson TX1 DeveloperKit, is defined at:kernel/arch/arm64/boot/dts/tegra210-jetson-cv-base-p2597-2180-a00.dtsThe code is as follows:sysedp {compatible = "nvidia,tegra124-sysedp";nvidia,margin = <0>;nvidia,min_budget = <0>;nvidia,initial_budget = <40000>;};④Where the critical current limit for 19V VDD_IN is calculated as follows:19V VDD_IN = 40,000 / 19 => 2105mAThe system integrator must configure the correct critical current limit based on the module input voltage. For example, the critical current limit for 8V VDD_IN iscalculated as follows:Critical current limit for 8V VDD_IN = 40,000 / 8 => 5000mABy default, the Jetson TX1 Developer Kit voltage and current monitor is configured for 19V input. If less than 19V input is used, the user must reconfigure the critical current limit of VDD_IN. If not set, unexpected CPU/GPU throttling and performance slowdown may occur.By default, the Jetson TX2 Developer kit critical current limit of VDD_IN is set to the maximum possible value of 8190mA. Therefore, it is not necessary to modify the critical current for lower input voltage unless user wants to configure the critical current limit for a specific input voltage.NoticeALL NVIDIA DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS, DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY, "MATERIALS") ARE BEING PROVIDED "AS IS." NVIDIA MAKES NO WARRANTIES, EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE MATERIALS, AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OR CONDITION OF TITLE, MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE AND ON-INFRINGEMENT, ARE HEREBY EXCLUDED TO THE MAXIMUM EXTENT PERMITTED BY LAW.Information furnished is believed to be accurate and reliable. However, NVIDIA Corporation assumes no responsibility for the consequences of use of such information or for any infringement of patents or other rights of third parties that may result from its use. No license is granted by implication or otherwise under any patent or patent rights of NVIDIA Corporation. Specifications mentioned in this publication are subject to change without notice. This publication supersedes and replaces all information previously supplied. NVIDIA Corporation products are not authorized for use as critical components in life support devices or systems without express written approval of NVIDIA Corporation.TrademarksNVIDIA and the NVIDIA logo are trademarks or registered trademarks of NVIDIA Corporation in the United States and other countries. Other company and product names may be trademarks of the respective companies with which they are associated.Copyright© 2014 NVIDIA Corporation. All rights reserved.。
TX2&RX2C内置升压模块电动玩具车遥控芯片

概述General DescriptionTX2/RX2C 是一对用于遥控玩具汽车的大型CMOS 电路,它具有五种控制功能:即控制玩具汽车向前向后左转右转和加速功能。
TX2有自动关机功能,当输入的端口为低电位时,TX2的SO 及SC 端口将会传送相关数据码,并利用射频电路(RF )或红外线电路(IR )将数据码传送到RX2C 并控制RX2C 的相关输出。
RX2C 内置2极放大器,透过简单的外围原理即可实现小信号放大的功能;将放大后的信号接入SI 端口便可控制RX2C 。
RX2C 内置升压电路,其输入电压可在0.8-3.3V 之间。
升压电路在1.0V 以上就稳定升压值3.6V 。
特性Features●TX22.0-4.5V 的宽工作电压5通道遥控控制:前进、后退、左转、右转及加速2种信号输出模式:射频信号及红外线信号 ⏹ 射频标准震荡频率:116KHZ ~140KHZ ⏹ 红外线标准频率:◆ 192KHz (载波为57KHZ ) ◆ 128KHz (载波为38KHZ )自动关机、内置震荡器低静态功耗14脚直插及贴片封装●RX2C宽工作电压:正常模式:1.8V ~ 5.0V 升压模式:1.0V ~ 3.3V5通道输出:前进、后退、左转、右转及加速MOD 端口控制减速功能内置高效升压电路、2极放大器、震荡器16脚直插及贴片封装⏹ 管脚图Pin AssignmentGE-TX2-DIP14/SOP14 GE-RX2C-DIP16/SOP16NC GND LEFT NC OSCI OCSO PC VDD SOGND OSCO RIGHTT LX⏹电器极限Absolute Maximum RatingsDC Supply Voltage.............................................. -0.3V to 6.0VInput / Output Voltage........................................ GND -0.2V to VDD + 0.2VStorage Temperature......................................... -25℃ to 125℃Operating temperature............................. -10℃ to 60℃Comments*Never allow a stress to exceed the values listed und er "Absolute Maximum Ratings", otherwise the d evice would suffer from a permanent damage. Nor is a stress at the listed value be allowed to persist over a period, since an extend ed exposure to the absolute maximum rating condition may also affect the reliability of the d evice, if not causing a damage thereof.⏹电器特性Electronic CharacteristicsTX2RX2C方块图Block Diagram管脚定义说明Pin Description脚位坐标图Pad LocationsTX2RX2CChip size=0.85X0.85mm 2The IC substrate must be connected to VDDChip size=1.2X0.9mm 2The IC substrate must be connected to VDD输入/输出对照表Output TablesNOTE: L=低电平, ●=高电平,○=84Hz, 2/3(66.7%) DUTY Pulse @F OSC=128KHZ应用电路Application Diagram发射射频电路GE-TX2RF Circuit接收射频电路(无升压)GE-RX2C RF Circuit(Without DC-DC)接收射频电路(有升压) GE-RX2C RF Circuit(With DC-DC)红外线发射/接收电路 IR Circuitiode 1NOTE :1. MOD=1 (Mod Pin opens)2. No using DC-DC converter because of higher supply voltage.3. Two grad e shift gears are realized电压对频率变化Variation Of VDD & F OSC规格书版本纪录。
深圳富满电子集团SCTX2B SDRX2ES五功能遥控IC说明书

SCTX2B/SDRX2ESSCTX2B/SDRX2ES(文件编号:S&CIC1443)五功能遥控IC 五、极限参数DC供电电压------------------------------------------------------------------------------- 2.0V~5.0V输入/输出电压------------------------------------------------------------------------------GND-0.3V~+0.3V工作温度--------------------------------------------------------------------------------------10℃~60℃贮藏温度--------------------------------------------------------------------------------------25℃~125℃注:使用时,不要超出“极限参数”中所列数值范围,否则芯片可能会损坏。
如在“极限参数”所列的范围值下工作,也不应超出一定时间限度,否则即使不引起损坏也会影响产品使用寿命。
六、电气参数SCTX2B/SDRX2ES(文件编号:S&CIC1443)五功能遥控IC 七、功能组合功能键(SCTX2B端)①译码结果(SDRX2ES端MOD=1)②译码结果(SDRX2ES端MOD=0)③结束码结束码前进前进前进输出脉冲(60Hz50%Duty)前进和加速前进前进和加速加速加速前进和加速加速和前进和向左前进和向左前进和向左前进输出脉冲(60Hz50%Duty)加速和前进和向右前进和向右前进和向右前进输出脉冲(60Hz50%Duty)后退后退后退输出脉冲(60Hz50%Duty)后退和向右后退和向右后退和向右后退输出脉冲(60Hz50%Duty)后退和向左后退和向左后退和向左后退输出脉冲(60Hz50%Duty)向左向左向左向右向右向右八、振荡频率调试(测试条件:VDD=3.0V)SDRX2ES之R OSC建议值=200K~220K,此时测得F OSC=115KHz~130KHz。
TX2S RX2 8脚封装电动玩具车遥控芯片

概述
TX2S 是用于遥控玩具汽车的发射电路,内部设计 A/D 转换单元,在 3 个输入脚中保留 五个功能键(即前进、后退、左转、右转、加速) 。TX2S 采用 SOP8 封装。
特点
z
工作电压范围:1.5~5V 外接元件少 标准振荡频率 128KHz,振荡电阻 220KΩ 按键电阻 56~82KΩ,建议 68KΩ。 具有静态电流低、自动切断电源等功能
深圳市腾芯微科技有限公司
TX2S 五功能遥控发射电路
极限值
参数
电源电压 输入/输出电压 工作温度 储存温度 VDD VIN/VOUT Topr Tstg
符号
-0.3V~5.0V GND-0.2V~VDD+0.2V 10℃~60℃ 25℃~125℃
范围
说明:上述参数绝对不允许超出,否则器件将受到永久性损坏。也不能在临界条件下长时间工作,否则即使不 损坏器件也会影响器件的可靠性。
功能码数(n)
4(W2) 10(W1) 16 22 28 34 40 46 52 58 64
解码结果(RX2)
起始码 前进 前进 加速 前进,向左 前进,向右 后退 后退,向右 后退,向左 向左 向右
V1.0 3
功能遥控发射电路 应用电路图
封装信息
V1.0 4
深圳市腾芯微科技有限公司
其中 W2 为 500HZ,频宽比为 3/4;W1 为 1KHZ ,频宽比为 1/2。
V1.0 2
深圳市腾芯微科技有限公司
TX2S 五功能遥控发射电路
编码规则 A)位格式
8mSEC 4W2
n×W1
8mSEC
1mSEC
T=17mSEC+(n×W1)×1mSEC
信号继电器 TX-S继电器 说明书

375产业机器用功率继电器J&L 继电器车载继电器高频设备产品号体系型号体系无标示 : 管装包装X : 盘装包装(1号端子为引出方向)Z : 盘装包装(12号端子为引出方向)0 :标准印刷板用端子或 表面安装端子单稳态型1 : 标准印刷板用端子或表面安装端子单线圈磁保持型2 : 标准印刷板用端子或01234671.53612244.59品号线圈电压(V )无标示 : 标准触点(Ag + Au clad )20 : AgPd 触点(微小负载)(AgPd+ Au clad (固定)·AgPd (可动)): 管装包装X : 盘装包装(1号端子为引出方向)Z : 盘装包装(12号端子为引出方向)1.5、3、4.5、6、9、12、24V无表示 SA SL : SL 型 SS : SS 型L : 单线圈磁保持型无表示 : 单稳态型双线圈磁保持型无表示 :标准印刷板用端子 1 :AgPd 触点(微小负载)(AgPd + Au clad (固定)、AgPd (可动))无表示 : 标准触点(Ag + Au clad )TX-S(ATXS2)2.关于AgPd接点(微小负载),型号的包装形态之前带-1。
订购时,请在表面安装系列前添加20。
377TX-S(ATXS2)产业机器用功率继电器J&L 继电器车载继电器高频设备参考数据■线圈规格■性能概要确认。
在微小负载模拟电路(DC10V 10mA 以下等级)上,建议使用AgPd 触点型或SX 继电器。
※2.使用环境温度的上限值是指可满足线圈温度上升值的最高温度。
继电器使用方面的注意事项请参照“关于周围环境”。
378TX-S(ATXS2)产业机器用功率继电器J&L 继电器车载继电器高频设备50101001,0001000.6101001,0000.20.41.00.81.通断容量的最大值触点电流2.寿命特性通断电流(A )3.机械寿命试验品:TXS2-4.5V ,数量:n=10通断频率:180次/分钟相对于额定电压值的比率通断次数(×10 )4吸合·释放电压的变化4. 电气寿命(1A 30V DC 电阻负载)试验品:TXS2-4.5V ,数量:n=6通断频率:20次/分钟相对于额定电压值的比率通断次数(×10 )4通断次数(×10 )4接触电阻接触电阻的变化5.-①线圈温度上升试验品:TXS2-4.5V ,数量:n=6测量位置:线圈内部,环境温度:25℃,85℃温度上升值线圈施加电压(%V )5.-②线圈温度上升试验品:TXS2-24V ,数量:n=6测量位置:线圈内部,环境温度:25℃,70℃温度上升值线圈施加电压(%V )动作·恢复时间线圈施加电压(%V )6. -①动作·恢复时间(有二极管)试验品:TXS2-4.5V数量:n=10动作·恢复时间线圈施加电压(%V )6. -②动作·恢复时间(无二极管)试验品:TXS2-4.5V 数量:n=107.环境温度特性试验品:TXS2-4.5V 数量频率(MHz )8. -①高频特性(隔离)试验品:TXS2-4.5V 数量:n=2隔离度频率(MHz )8. -②高频特性(插入损耗)试验品:TXS2-4.5V 数量:n=2插入损耗 寿命(%V )(%V )(℃)(℃)(m 7)(ms )(ms )(dB )(dB )(×次10参考数据379TX-S(ATXS2)产业机器用功率继电器J&L 继电器车载继电器高频设备0010 (%V)203040506070809010010.热电动势9.-①误动作冲击(单稳态型)试验品:TXS2-4.5V 数量:n=69. -②误动作冲击(磁保持型)试验品:TXS2-L 2-4.5V 数量:n=6试验品:TXS2-4.5V 数量 :n=612.实际负载测试(35mA 48VDC 线簧继电器负载)试验品:TXS2-4.5V 数量:n=6吸合·释放电压的变化对额定电压值的比例通断次数(×104)接触电阻的变化接触电阻通断次数(×104)(m 7)380TX-S(ATXS2)产业机器用功率继电器J&L 继电器车载继电器高频设备■标准印刷板用端子·自锁端子端子排列·内部接线图(BOTTOM VIEW )(无励磁状态)(复位状态)单稳态型单线圈磁保持型双线圈磁保持型(复位状态)■表面安装端子端子排列·内部接线图(TOP VIEW )(无励磁状态)(复位状态)单稳态型单线圈磁保持型双线圈磁保持型(复位状态)尺寸图CAD 数据标记的商品可从控制机器网站(http://panasonic-denko.co.jp/ac/c)下载CAD 数据。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
描述
TX2S 是一顆专为遥控玩具车设计专用发射和接收的大规模集成电路,它采用先进的CMOS 工艺制造。
8PIN 封装技术,降低对封装的需求。
TX2S 内部设计A/D 转换单元,在3个输入脚中保留6个功能键(即前进、后退、左转、右转、加速及附加键)。
⏹ 主要特点:
工作电压范围(V CC ⏹ TX2S :2.0V < VCC < 6.0 =1.5~5.0V )
低静态功耗
TX2S 有自动关机功能
外围组件少
标准8PIN 封装,节省体积及成本
⏹ 管脚排列图
TX2S-DIP8/SOP8
OSC FB LR TF
PC VCC Dout
GND
⏹ 内部框图
LR FB TF
OSC
PC
Dout
⏹ 极限参数
⏹ 电气参数(除非特殊说明,Tamb=25℃,VDD=4.0V,Fosc=128KHZ )
⏹ 管脚描述
⏹ 功能描述
1. 编码方法
串行码格式一帧为 n+4 个脉冲
起始码+功能码
起始码4个 W2
功能码 n 个W 1 其中 W2 为500HZ 频宽比为3/4 W 1 为1KHZ
频宽比为1/2
2. 编码规则
a) 位格式
n X W18mSEC 8mSEC
T
4 W2
b) 数据格式
第一個字
第二個字
第三個字
12345678TX2S 任一功能鍵TX2S 的SO 編碼輸出
RX2S 功能輸出
編碼結束
功能码由n个W1脉冲组成n的不同数值分别表示不同的功能详述如下
⏹建议应用电路
●TX2S
E1A ntenna。