Multi Source Translation Content

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Multi Source Translation Content

Discussions

Sort by:
Application Note (AN12762): Develop Audio Player In HiFi 4 for i.MX RT600 MCU This application note describes how to develop an audio player with NXP i.MX RT600 crossover MCU family. Click here to access the full application note. i.MXRT 600
View full article
Activating multiple Tags using NFC Reader Library Hello NFC enthusiasts,   In the NFC communication protocol, when a device acts as a NFC reader (it provides its own field), it is waiting for a tag to approach. When this occurs, the reader energizes the tag and depending on the application, it can read from or write to a tag.   When multiple tags are in the field, the power decreases according to the number of tags being energized, for which the tag operations will not work properly. For this, there is a process called anti-collision, in which the reader decides, from the detected tags, one to work with.   The purpose of this document is to demonstrate the activation of each tag at a given index.   This demonstration is going to be made with two NTAG 216.     This demonstration is based on NXP NFC Reader Library v05.02.00, NfcrdlibEx3_NFCForum project for PNEV7462B, in which some modifications are going to be made in order to carry this out. These tags are compliant with NFC Forum Type 2 Tag and ISO/IEC14443 Type A specifications.    In phacDiscLoop.h modify the max number of cards supported (two cards for this demonstration):   #define PHAC_DISCLOOP_CFG_MAX_CARDS_SUPPORTED 0x02U      In NfcrdlibEx3_NFCForum.c add the following code in LoadDiscoveryConfiguration():   static phStatus_t LoadDiscoveryConfiguration() { ... /*Passive max typea devices*/ status = phacDiscLoop_SetConfig(pDiscLoop, PHAC_DISCLOOP_CONFIG_TYPEA_DEVICE_LIMIT, 2); CHECK_STATUS(status); }   A fix to the SW stack has to be made (Fix will be implemented in the next release): open "phacDiscLoop_Sw_Int_A.c", line 511, change if statement as below.     if((pDataParams->sTypeATargetInfo.bTotalTagsFound > 1) && ((bTypeATagIdx) < pDataParams->sTypeATargetInfo.bTotalTagsFound))     Until now, the reader is able to detect a maximum of two tags and work with up to two type A devices.   The activation of a tag at a given index is possible to the phacDiscLoop_ActivateCard() function.   Once this function is called, it will receive the discovery loop data parameters, the type of tag and the index of a tag to be activated.   The code will be added after knowing that multiple tags are detected and resolved in the NfcrdlibEx3_NFCForum.c file.   else if((status & PH_ERR_MASK) == PHAC_DISCLOOP_MULTI_DEVICES_RESOLVED) { /* * Multiple cards resolved. It enters here if DEVICE LIMIT > 1 and more than one devices are * detected and resolved. */ DEBUG_PRINTF (" \n Multiple cards resolved: \n"); /* Get detected technology type */ status = phacDiscLoop_GetConfig(pDiscLoop, PHAC_DISCLOOP_CONFIG_TECH_DETECTED, &wTagsDetected); CHECK_STATUS(status); /* Get number of tags detected */ status = phacDiscLoop_GetConfig(pDiscLoop, PHAC_DISCLOOP_CONFIG_NR_TAGS_FOUND, &wNumberOfTags); CHECK_STATUS(status); DEBUG_PRINTF ("\tNumber of tags: %d \n",wNumberOfTags); /* Code */ ... } Note: The code to be inserted in the comment /* Code */ is below in the Code section of this document.   The demonstration will be as simple as activating one tag, read its NDEF message, activate the second tag and read its NDEF message as well so that we make sure the activation process is performed correctly.   Each tag was previously written with a text NDEF message respectively.   Tag 1: Text: Hallo! Language: de   Tag 2: Text: ¡Hola! Language: es   Writing to a tag can be done by making use of our TagWriter app available in the play store: NFC TagWriter by NXP - Aplicaciones de Android en Google Play    Code section:   uint8_t bTagState1; /* Tag 1 */ /* Activate tag at index 0 */ status = phacDiscLoop_ActivateCard(pDataParams, PHAC_DISCLOOP_TECH_TYPE_A, 0x00); /* Check for NDEF presence */ status = phalTop_CheckNdef(palTop, &bTagState1); /* Read NDEF message */ status = ReadNdefMessage(PHAL_TOP_TAG_TYPE_T2T_TAG); DEBUG_ERROR_PRINT(status); /* Tag 2 */ /* Activate tag at index 1 */ status = phacDiscLoop_ActivateCard(pDataParams, PHAC_DISCLOOP_TECH_TYPE_A, 0x01); /* Check for NDEF presence */ status = phalTop_CheckNdef(palTop, &bTagState1); /* Read NDEF message */ status = ReadNdefMessage(PHAL_TOP_TAG_TYPE_T2T_TAG); DEBUG_ERROR_PRINT(status);   Behavior shown in the console monitor:   NFC Forum Example:       This implementation demonstrated the activation of two type A tags at a given index. I hope this is of great help!   Best regards, Ivan. Original Attachment has been moved to: Project-files.zip
View full article
eIQ Sample Apps - Introduction All the required steps for getting a full eIQ image can be found in the following documentation: NXP eIQ(TM) Machine Learning Enablement. These labs can be applied to all i.MX 8 boards, in this particular tutorial describes the i.MX 8M Mini EVK board. Hardware Requirements i.MX 8MM EVK board USB cable (micro-B to standard-A) USB Type-C to A Adapter USB Type-C 45W Power Delivery Supply IMX-MIPI-HDMI Daughter Card MINISASTOCSI Camera Daughter Card 2×Mini-SAS cable AI/ML BSP flashed into the SDCard Ethernet cable USB Mouse HDMI Cable Monitor Software Requirements For GNU/Linux: minicom or screen. For Windows: PuTTY. Preparing the Board Connect the IMX-MIPI-HDMI daughter card to the Mini-SAS cable and into connector labeled DSI MIPI (J801) and then connect the HDMI monitor cable into it. Warning: Do not hot-plug the Mini-SAS cables and cards or the boards will be damaged! Remove power completely before connecting or disconnecting the Mini-SAS ends. Connect the MINISASTOCSI camera daughter card to the Mini-SAS cable and into connector labeled CSI MIPI (J802). Connect the micro-B end of the supplied USB cable into Debug UART port J901. Connect the other end of the cable to the host computer: For GNU/Linux: Configure minicom or screen with the /dev/ttyUSB port number and set the baud rate to 115200. The port number can be found checking in /dev directory. For Windows: Configure PuTTY with the board COM port number and set the baud rate to 115200. The port number can be found on the Windows Device Manager. NOTE: This board mounts two device port numbers, use the highest number which is used to communicate with Cortex-A. Connect the MicroSD Card to the MicroSD Card Connector J701 in the board back side. In order to Boot the board from the MicroSD Card, change the Boot Switches SW1101 and SW1102 according to the table below: BOOT Device SW1101 SW1102 MicroSD / uSDHC2 0110110010 0001101000 NOTE: The boot device settings above apply to the revision C i.MX 8MM EVK board. Other revisions of the boards may have a different number of boot mode switches and slightly different settings. Please follow the SW1101 and SW1102 values printed on your specific board for booting from the MicroSD Card. Connect the power supply cable to the power connector J302 and power on the board by flipping the switch button SW101. NOTE: For more details on the board peripherals, please consult the i.MX 8MM EVK Getting Started. After these steps, it is all set to start with the eIQ Sample Apps. Go to the eIQ Sample Apps - Object Recognition using Arm NN. i.MX 8
View full article
OpenCV 3.1 支持 mx6q 板 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> OpenCV(开源计算机视觉库)是在 BSD 许可下发布的,因此对于学术和商业用途都是免费的。它具有 C++、C、Python 和 Java 接口,并支持 Windows、Linux、Mac OS、iOS 和 Android。OpenCV 的设计注重计算效率,并重点关注实时应用。该库采用优化的 C/C++ 编写,可以利用多核处理的优势。通过 OpenCL 的支持,它可以利用底层异构计算平台的硬件加速 在当前的bsp中,支持opencv 2.4,但是有些客户想要使用opencv 3.1,那么可以使用morty yocto bsp来安装opencv。 步骤1: 有关如何在 ubuntu 上安装软件包以及如何构建环境,请参阅 bsp 用户指南,有关如何构建分支 morty,请尝试使用以下命令: 机器=imx6qsabresd源fsl-setup-release.sh-b build_qt5-e fb 第 2 步: 关于如何启用 opencv,请在 local.conf 中添加以下命令,路径为 fsl-release-bsp/build/conf, "CORE_IMAGE_EXTRA_INSTALL += "libopencv-core-dev libopencv-highgui-dev libopencv-imgproc-dev libopencv-objdetect-dev libopencv-ml-dev" CORE_IMAGE_EXTRA_INSTALL += “opencv-应用程序 opencv-dev python-opencv python-模块”” 然后通过 bitbake 再次构建。 然后您可以在 fsl-release-bsp/build/tmp/deploy/images/im6qsabresd/ 中找到该图像,提取 rootfs 文件时可以找到 opencv 库 步骤3: 然后您可以使用 dd 命令或 mfgtool 将图像文件下载到板上并使用 opencv 库文件。 其他用法: 可以安装 populate_sdk 来构建源代码,对于 opencv 3.1,也许你会发现一些需要修复的 g++ 问题,所以只需简单介绍一下 使用命令:bitbake -c populate_sdk fsl-image-gui(例如) 然后您可以在fsl-release-bsp/build_x11/tmp/deploy/sdk中找到sdk安装文件,运行安装文件,在/opt/poky中设置安装文件,安装成功后您可以在/opt/poky中找到工具链。
View full article
Program the firmware to PNEV5180B board When the PNEV5180B cannot work with the Cockpit, you can re-program the firmware to the board. Below are the steps show you how to program the firmware to the board again. 1. If you don't have the MCUXpresso, please download the MCUXpresso from the NXP web first. MCUXpresso Software and Tools for ARM® Cortex®-M cores|NXP  2. Install the MCUXpresso IDE v10.0.0 to your PC. 3. Configure PNEV5180 board to use external power supply J101, and then power up the board. There is 10-pin ARM Cortex header on the PNEV5180B , connect  LPC-Link2 debug probe to it (J7) by using flat cable and also connect debug probe to the PC host over USB mini cable - both jumper on debug probe are open (JP1 and JP2). 4. Start MCUXpresso IDE and import any LPC1769 project from filesystem. For example: SW3522.zip. This is important to give programmer right definitions. SW3522 can be downloaded from here : NFC Reader Library v4.040.05.011646 R1 for PNEV5180B including all software examples  5. After import the SW3522, you can try to build the example and run the example on your board. e.g. NfcrdlibEx1_BasicDiscoveryLoop. Click LinkServer GUI Flash programmer icon on the main menu. When started programmer tool will check if LPC-Link2 debug probe is attached. 6. Browse to the C:\nxp\NxpNfcCockpit_v4.0.0.0\firmware\Secondary_PN5180\BootLoader_And_Nfcrdlib_SimplifiedAPI_EMVCo_Secondary.bin. Set the Base address to 0x0. 7. Flash Write Done. 8. After this, reset the board and to start NFCCockpit v4.0.0.0. The board will be recognized. P.S. The board is connected to PC via VCOM. If there is any driver issue, please try to re-install the VCOM driver and restart the PC. The VCOM driver can be found in the C:\nxp\NxpNfcCockpit_v4.0.0.0\VCOM. Re: Program the firmware to PNEV5180B board Your content helped me a lot to take my doubts, thank you very much...  9apps
View full article
EMEA NXPカップ2017 FasTech - Romania.pdf <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
View full article
Ment_Milestone_4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 我们翻唱了深紫乐队的《水上烟雾》。 (在 “我的视频” 中查看) 2017 年 Linux 嵌入式挑战赛 回复:Ment_Milestone_4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 超级皮重!
View full article
BLEのビギナーセッション <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> プレゼンターは、自動車向けのNXP BLEソリューションについて詳しく説明します。このセッションでは、BT-SIGによって定義された最新の規格の説明と、NXPシリコンロードマップの明確なプレゼンテーションを行います。また、BLE通信システムの実装を成功させるために必要な開発ツールについても、車のアクセスやタイヤの空気圧監視などのアプリケーションに特に注意を払いながら、聴衆に説明します。参加者は、適切なデバイスを選択し、自分の開発環境にすばやく移行するのに役立つ行動を呼びかけて、このセッションを終えます。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> プレゼンターは、自動車向けのNXP BLEソリューションについて詳しく説明します。このセッションでは、BT-SIGによって定義された最新の規格の説明と、NXPシリコンロードマップの明確なプレゼンテーションを行います。また、BLE通信システムの実装を成功させるために必要な開発ツールについても、車のアクセスやタイヤの空気圧監視などのアプリケーションに特に注意を払いながら、聴衆に説明します。参加者は、適切なデバイスを選択し、自分の開発環境にすばやく移行するのに役立つ行動を呼びかけて、このセッションを終えます。 Re:BLEのビギナーセッション <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> TPMSデモのサンプルコードはダウンロードできますか?
View full article
尤达里程碑2 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 大家好, 在此视频中,我们展示了为第二个里程碑实现的几个新功能。 尤达可以控制你的电器。在这个演示中,我们连接了两个由助手控制的 LED:打开和关闭,使它们变暗或变亮。每个 LED 都可以单独控制或作为一个组进行控制,并且易于设置:连接一个 LED 并指定您使用的引脚。在这个例子中,我们使用 PWM 引脚进行细粒度控制。 尤达可以利用传感器提供的信息。目前,它通过 I2C 接口与 LM75A 温度传感器通信。 Yoda 可以充当音乐播放器。您可以告诉您的助手播放音乐、跳过一首歌曲、调高音乐音量以及管理您的播放列表。 有关实施、安装说明和其他规格的更多详细信息,请查看我们的 Git 存储库。 感谢观看, 尤达团队 (在 “我的视频” 中查看)
View full article
NFCリーダーライブラリの i.MX RT1050への移植 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> このドキュメントでは、i.MX RT1050でCLRC663プラスを使用する方法をステップバイステップで説明します。このためには、NFCリーダーライブラリを i.MX RT1050に移植する必要があります。 このドキュメントには、次の 2 つの zip ファイルが添付されています。 1. 「NFCReaderLibrary_IMXRT1050_Portingガイド+DAL_IMXRT1050_BLE-NFC-V2.zip」 : このフォルダは、i.MX RT1050 で BLE-NFC-v2 ボードを使用したい方のために事前設定されています。 2.「NFCReaderLibrary_IMXRT1050_Portingガイド+DAL_IMXRT1050_CLEV6630B.zip」:このフォルダは、i.MX RT1050でCLEV6630Bボードを使用したい人のために事前に設定されています。 i.MX RT1050 と CLRC663 Plus ファミリーの使用方法を説明するビデオは、この リンク をクリックすると視聴できます (i.MX RT 1050 と CLRC663 Plus ファミリーの使用|NXP)も同様です。 接触型スマートカードリーダーIC NFCフロントエンド・ソリューション NFCリーダー・ライブラリ 日時:NFCリーダーライブラリの i.MX RT1050への移植 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 非常に良いです、私はちょうどCAS1(ミラノのNXPの前提)でこのNFCアーキテクチャを再現しようと試みるために両方の添付ファイルをダウンロードしました。詳細については、アリカーンにお問い合わせください。乾杯ロドルフォ +39 3498219382 日時:NFCリーダーライブラリの i.MX RT1050への移植 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> とても親切で親切です...教えて頂きありがとうございました。 モブドロ
View full article
EMEA NXPカップ2017 ARCar - Switzerland.pdf <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
View full article
安全 SBC 被选为汽车应用 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 更多信息,请参见: https://www.nxp.com/docs/en/brochure/SBCAUTOBRA4.pdf 功能安全SBC|恩智浦 本文档由以下讨论生成:汽车安全 SBC 的选择 功能安全 电源解决方案
View full article
保护我的连接设备 - 威胁在哪里以及恩智浦为您提供哪些解决方案? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将首先向客户分析其产品面临的各种威胁,包括黑客攻击、知识产权盗窃和信息安全。重点首先在于让客户了解问题,然后确定安全规划层级,最后介绍如何通过多种产品的解决方案帮助客户保护自己。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将首先向客户分析其产品面临的各种威胁,包括黑客攻击、知识产权盗窃和信息安全。重点首先在于让客户了解问题,然后确定安全规划层级,最后介绍如何通过多种产品的解决方案帮助客户保护自己。
View full article
恩智浦智能家居、楼宇和照明连接解决方案以及面向消费、医疗、工业物联网和汽车市场的 BLE 低功耗解决方案 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将首先概述恩智浦无线连接 MCU 产品组合为满足物联网市场需求而包含的产品、软件和支持。然后,它将对 Thread ™网络技术进行更深入的探讨和演示,以及如何使用 NXP 的 Thread Stack 和 ZigBee ® Dotdot 应用层开发应用程序。本次会议还将介绍 NXP BLE 产品系列,包括最新的 QN9080/83 超低功耗 BLE WMCU 和 KW35/36 汽车和工业 BLE WMCU,详细介绍目标用例、设备功能,重点介绍 BLE 和堆栈以及支持实现。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将首先概述恩智浦无线连接 MCU 产品组合为满足物联网市场需求而包含的产品、软件和支持。然后,它将对 Thread ™网络技术进行更深入的探讨和演示,以及如何使用 NXP 的 Thread Stack 和 ZigBee ® Dotdot 应用层开发应用程序。本次会议还将介绍 NXP BLE 产品系列,包括最新的 QN9080/83 超低功耗 BLE WMCU 和 KW35/36 汽车和工业 BLE WMCU,详细介绍目标用例、设备功能,重点介绍 BLE 和堆栈以及支持实现。
View full article
LAT-DES-T2445 - PCBレイアウトのヒントとコツ – 堅牢性への旅 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> あらゆる種類のPCBを開発する方法と、過酷な環境で優れたパフォーマンスを発揮するための複雑さを学びましょう。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> あらゆる種類のPCBを開発する方法と、過酷な環境で優れたパフォーマンスを発揮するための複雑さを学びましょう。
View full article
S12ZVC 上的单位/双位 RAM ECC 错误示例代码 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 示例代码展示了如何在 S12Z 设备上调用单位或双位 RAM ECC 错误。   在线程AM/FLASH ECC 错误处理中可以找到有关 S12Z ECC 代码的一些基本概述。 概述
View full article
FTF-MHW-N1920スマートAC / DC電源ソリューション <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> AC/DCコンバータは、AC電源から90〜264 V ACの範囲で規定された安全な供給電圧を提供する必要があります。主な要件は、効率、無負荷時の消費電力、およびサイズです。ウォールチャージャーの新たな要件は、電圧または電流を変更することでより高速な充電を可能にするモバイル通信です。最も一般的なAC/DCトポロジは、フライバックと共振です。フライバックコンバータはコストが最も低いのが特徴ですが、出力電力が高くなると磁気部品のサイズが大きくなります。その場合、共振コンバータが推奨されますが、低負荷では効率が低くなります。NXPは、この問題を克服する共振概念を発明しました。このプレゼンテーションでは、前述のAC/DC技術とNXPの製品の利点を紹介します。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> AC/DCコンバータは、AC電源から90〜264 V ACの範囲で規定された安全な供給電圧を提供する必要があります。主な要件は、効率、無負荷時の消費電力、およびサイズです。ウォールチャージャーの新たな要件は、電圧または電流を変更することでより高速な充電を可能にするモバイル通信です。最も一般的なAC/DCトポロジは、フライバックと共振です。フライバックコンバータはコストが最も低いのが特徴ですが、出力電力が高くなると磁気部品のサイズが大きくなります。その場合、共振コンバータが推奨されますが、低負荷では効率が低くなります。NXPは、この問題を克服する共振概念を発明しました。このプレゼンテーションでは、前述のAC/DC技術とNXPの製品の利点を紹介します。 セキュアモバイル |ヘルスケア&ウェアラブル
View full article
CIT-N1924 MIFARE Beyond Ticketing - スマートシティのための非接触型ソリューション <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 交通機関の発券要件は、トランザクションのセキュリティからマルチアプリケーションのニーズ、モバイル発券を既存の環境に統合する可能性まで、ここ数年で大幅に進化しました。NXPのMIFARE®製品は、これらの要件を一貫して満たし、利便性、柔軟性、拡張性を提供する主要な非接触型ソリューションとして優れた評判をしっかりと確立してきました。アプリケーション開発者、サービスおよびソリューションプロバイダー、システムインテグレーター、カードメーカーなど、1,000を超えるビジネスパートナーがオープンなMIFAREコミュニティとエコシステムを構成しています。MIFARE DESFire EV2は、ハードウェアとソフトウェアの最高セキュリティレベル(EAL5+コモンクライテリア認証)を備えた次世代のMIFARE ICです。その強化されたキー管理により、無制限のアプリケーションのための理想的なマルチアプリケーションプラットフォームになります。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 交通機関の発券要件は、トランザクションのセキュリティからマルチアプリケーションのニーズ、モバイル発券を既存の環境に統合する可能性まで、ここ数年で大幅に進化しました。NXPのMIFARE®製品は、これらの要件を一貫して満たし、利便性、柔軟性、拡張性を提供する主要な非接触型ソリューションとして優れた評判をしっかりと確立してきました。アプリケーション開発者、サービスおよびソリューションプロバイダー、システムインテグレーター、カードメーカーなど、1,000を超えるビジネスパートナーがオープンなMIFAREコミュニティとエコシステムを構成しています。MIFARE DESFire EV2は、ハードウェアとソフトウェアの最高セキュリティレベル(EAL5+コモンクライテリア認証)を備えた次世代のMIFARE ICです。その強化されたキー管理により、無制限のアプリケーションのための理想的なマルチアプリケーションプラットフォームになります。 スマートシティ&インフラストラクチャ
View full article
HMB-N1982 利用智能家居自动化解决方案开发“点击连接”体验 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 讲座介绍 NFC 调试以及 NFC 在智能家居/物联网中实现的各种用例,以节省成本并实现便利。NFC 为在智能家居和建筑中安装设备提供了最佳的用户体验,此外还可用于诊断、退役、OTA 升级和各种其他有用的功能。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 讲座介绍 NFC 调试以及 NFC 在智能家居/物联网中实现的各种用例,以节省成本并实现便利。NFC 为在智能家居和建筑中安装设备提供了最佳的用户体验,此外还可用于诊断、退役、OTA 升级和各种其他有用的功能。 智能家居和智能建筑
View full article
Aerospace Communications with Highest Power LDMOS Narrowband Transistor Demo NXP demonstrates the industry’s highest power LDMOS narrowband transistor for IFF and civil transponders     Demo / product features MMRF2010N 250 W Pulse 50 V LDMOS Transistor 250 W Peak, 1030-1090 MHz reference circuit Plastic package TO-270WB-14 50 Ohm Input matching Singe ended   MMRF1317H 1500 W Pulse 50 V LDMOS Transistor Highest power narrowband IFF transistor for defense and civil use Ceramic package NI-1230H-4S 1500 W Peak, 1030-1090 MHz reference circuit > 10:1 VSWR   NXP Recommends MMG3005N MMRF2010N MMRF1317H                                                                                                                          Communications Infrastructure
View full article