NXP Designs ナレッジベース

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

NXP Designs Knowledge Base

ディスカッション

ソート順:
The Cypherbridge Systems SDKPac is a collection of embedded device SDKs and Toolkits that can be used out of box to add secure device connectivity to a target project. The SDKPac includes features and standards based protocols for secure IoT connect-to-cloud, gateway, embedded servers and clients, secure file transfer protocols, and electronic data privacy. This SDKPac demo kit contains applications for the FRDM-K64F Freedom Development Board to demonstrate: uSSL/TLS server demo - connect to the FRDM-K64F Development Board from desktop browser. uSSH server demo - connect to the FRDM-K64F Development Board from uSSH client. uFTP secure FTP file transfer client - connect from the FRDM-K64F Development Board to FTPS server using FTPS secure file transfer protocol. uMQTT subscribe and publish examples interfacing to broker service Just drag and drop any of these pre-built binary applications on the FRDM-K64F Development Board to hit the ground running with your SDKPac demo today.   https://community.nxp.com/players.brightcove.net/4089003392001/default_default/index.html?videoId=4282648281001   Features uSSL SDK micro-content HTTPS server uSSH SDK server for secure telnet replacement uFTPS Secure file transfer Toolkit and command line client uMQTT client mmCAU Crypto Engine Support Integrated with MQX/RTCS 4.1 OpenSDA CMSIS-DAP Debug using SWD connection USB Serial Port Interface 10/100 Ethernet   SDK Connectivity uSSL/TLS 1.2 server and client, X.509 uSSH 2.0 server and client uSCP Secure Copy Protocol uFTPS RFC 959, 2228, 4217 uMQTT 3.1 Client subscribe and publish Links SDKPac Follow up System Diagram Software Diagram  
記事全体を表示
About this demo This Demo contains fully working software to show the implementation of two great features from the QN9080SIP-DK. The BLE in this board provides a Beacon solution to be implemented, based on the SDK example downloaded in the https://mcuxpresso.nxp.com/en/select As previously mentioned, this demonstration is based on the Beacon example from the QN9080 SDK, along with the AN12319SW for using the NT3H2211 Tag. The main objective of this demo software is to write a string in the NTAG memory and be able to read the content using the NTAG stack (from the AN12319 project). Then trigger a message update to be advertised from the beacon. Project Scope Write an NDEF message with a smartphone, using NXP's TagWrite App into the NT3H2211. Be able to start advertising the 6-byte code/message using the BLE stack from the SDK version 2.2.3 into the MCUXpresso v11.2.1. Useful Links Link Description https://mcuxpresso.nxp.com/en/builder SDK Builder https://www.nxp.com/products/wireless/bluetooth-low-energy/fully-certified-module-supporting-bluetooth-and-nfc:QN9080SIP QN9080SIP full documentation https://www.nxp.com/docs/en/application-note/AN12319.pdf A document explaining brief integration for pairing using the NTAG https://www.nxp.com/docs/en/application-note-software/AN12319SW.zip  The respective Software for the AN12319   Required Items Link Description https://www.nxp.com/products/wireless/bluetooth-low-energy/a-highly-extensible-platform-for-application-development-of-qn908x:QN9080DK Board in which the demo was created and tested Android Smartphone Smartphone with IoT Toolbox and TagWriter App IoT Toolbox App https://play.google.com/store/apps/details?id=com.freescale.kinetisbletoolbox TagWriter App https://play.google.com/store/apps/details?id=com.nxp.nfc.tagwriter   Hardware Diagram     Step-by-Step Guide for testing the Demo Get the QN9080 SDK form SDK Builder  Install the QN908x SDK into your MCUXpresso Import the attached file into MCUXpresso on File > Open Projects from File System   Connect properly the NTAG antenna from the kit as shown in the Hardware Diagram. Connect the QN9080SIP-DK using a micro-USB cable. Flash the project into the board and Push Button 1 from the board while running. Open the TagWriter App from your phone and select the Write option. Create a New Plain text element and write any positive float number (< 0.0). Select the Save and Write button. Approach the phone into the NFC antenna. Press Button 1 again to restart the BLE advertising Open the IoT Toolbox App. Select the Beacons option. You should be able to visualize the new payload messages from the device. Note: These messages are representation in decimal from the actual 4-byte (32-bit) number. Each letter is composed of 2, 8-bit numbers. This RAW representation is for proof of concept purposes. This application can be replaced by another BLE device in scanning mode to perform a data post-process.  Additional Demo Information These next steps are intended to guide the developer to an easier understanding of the modifications that were made from the base project. This example provides a guide to learn the basic functionality of the high-level NTAG stack.   Select the FreeRTOS Beacon example from wireless_examples -> Bluetooth in the QN9080 SDK. After being sure that this demo works properly on our QN9080SIP-DK we need to import from the file system the AN12319 project. For being sure everything works, we can also test this project, inside it there is a file called: app_ntag.c inside the source directory. Inside this file, on the Public Functions section, we are able to modify the NDEF_Pairing_Write() and NDEF_Demo_Write() functions for our purposes. The first function is used as the name mentions, to execute the example for pairing our phone with the board without the need to type any pairing code. The second function writes an NDEF in the NTAG and can be read from the phone App TagInfo or TagWriter. To start with the actual creation of the application I used this project: "qn908xcdk_wireless_examples_bluetooth_hid_device_freertos" and started importing the beacon files needed from the beacon FreeRTOS example. As you can observe, this job facilitates a lot because of the similar structure between both projects, this will simplify the tasks and will help us not to get lost. Due to the fact that we started using the HID Device project, all the NTAG stack was already there so we will only be going to focus on the source directory for the additions and modifications. Starting with the erasing of the hid_device.c and .h, these files won't be required for this project. The beacon.c and .h are required to be in this project for the beacon functionalities and routines, this files depend on the Bluetooth stack, the general framework files, and the common files from the source directory. The app_config file has all the BLE needed configurations to set the parameters and respective structures. This is where the initial advertising message will be configured. For the NTAG configurations, the app_ntag file containing the high-level nTag functions for Read/Write capabilities that depends on the NTAG stack (NTAG_I2C/XXX) The ApplMain had some of the most significant changes due to being the main file that calls the BLE functions at the start and also manages the Interrupt used to trigger our own project functions using FD. The files that changed were, as mentioned above, ApplMain.c and app_ntag.c/.h . This has to do with the fact that we will only are going to change the functions called when a Tag Writer is in the field of the NFC antenna and how this data is processed in order to be read and sent to the aData array by using its structure. As you can see in the app_ntag.c file, the last two functions: NDEF_read_test() and getDataNDEF() represent the main changes in this file. Along with the pin configuration for FD managing in the ApplMain.c
記事全体を表示
The latest and smallest addition to the NXP SCM portfolio, SCM-i.MX 6SoloX, plays a promotional video on repeat on an evaluation board. The SCM-i.MX 6SoloX integrates NXP i.MX 6SoloX applications processor, NXP PF0100 power management, and system passive components (de-coupling capacitors and resistors). It is designed and enabled for LPDDR2 and eMMC memory via vertical stacking (PoP/ePoP)   With this level of integration in an ultra-compact 13mm x 13mm footprint it can save as much as 50% in PCB area.   Features: Reduce overall hardware design time and bring products to market faster. Overall PCB area reduction over current discrete solutions. Reduces design complexity of integrating DDR memory and power management. Get started with an evaluation board and Linux OS, early access program now available. _____________________________________________________________________________________________________ Featured NXP Products: Single Chip System Modules (SCM)|NXP i.MX 6SoloX Family of Applications Processors|NXP
記事全体を表示
Overview   Within the industry it is necessary to use different types of motor control in which different ranges of precision or freedom of movement can be obtained. The servo motor control by pwm gives precise control by angles.   Required material   1x Kinetis K70 120 MHz Tower System Module 2x Tower System Elevator Module 5x Potentiometer 5x Servomotor CodeWarrior Video     Connections   Step-by-Step   1. Download the attached file2. Unzip it 3. Upload it to CodeWarrior 4. Compile it 5. Upload it to the TWR-K70 board 6. Make the connections in the diagram 7. Connect to Power Supply 8. The variation in the potentiometers will vary the position of each motor
記事全体を表示
  Overview The TRIAX demo board was built to combine many of the demos available for accelerometer applications. The TRIAX demo board will enable you to see how Our accelerometers can add additional functionality to applications in many different industries. By thinking of accelerometer applications in terms of the measurements that are performed, they can be grouped into 5 sensing functions – Tilt, Motion, Positioning, Shock and Vibration. The RD1986MMA6260Q reference design is a two accelerometer solution which is achieved by using the MMA6260Q (x and y-axis device) and the MMA1260D z-axis accelerometer. Archived content is no longer updated and is made available for historical reference only.   Features Accelerometers:  MMA6260Q, MMA1260D Packages:  Quad Flat No-Lead (QFN) 6x6x1.98m and SOIC 16 G Range:  +/- 1.5 G Sensitivity:  1200 mV / G Microprocessor:  MC68HC908KX8 Demonstrates Consumer Accelerometer Applications High-performance M68HC08 architecture Option to allow use of external clock source or external crystal/ceramic resonator SCI Interface User Inputs:  1 Pushbutton Outputs:  Piezohom, Serial Port Connection Design Resources
記事全体を表示
Demo The Automotive Magnetic Sensors demo will showcase the use of Rotational Wheel Speed Sensors for car ABS and Angular Sensors for Electric Throttle Control (ETC) as well as for Steering Angle measurement.     Features: NXP supplies magnetic sensors for rotational wheel speed and true angular measurement systems: ABS speed sensors with simple ferrites instead of expensive rare earth magnets, and with best in class jitter performance required for iTPMS, Angular sensors with outstanding accuracy of ±1˚ over full temp range and lifetime while operating in a wide temperature range up to 160 °C/320 °F. _______________________________________________________________________________________________________     Featured NXP Products: Sensors for Automotive|NXP _______________________________________________________________________________________________________     S01
記事全体を表示
Overview   The PN7462 family consists of 32-bit Arm® Cortex®-M0-based NFC microcontrollers offering high performance and low power consumption. Because of the integrated NFC, many of the applications in which this product is used require interaction between some controllers, either to send data or instructions. In this case the board serves as a device for reading or writing NFC devices.   Required Material OM27462CDKP: NFC Controller development kit  MCUXpresso Software and Tools    Step-by-Step Download MCUXpresso Download and unzip attachment Open the Project in MCUXpresso Build it Connect LPC Link to PN7462 card Connect the two cards to the pc Debug the Project Use GPIO 4 and 5 for select interface Use GPIO 6, 7 and 8 for select operation mode
記事全体を表示
  Overview The convergence of an aging population and breakthrough technological advances has created endless opportunities for automated medical devices. These devices help ensure the future health of millions of people by providing advances in diabetes care, cardiac care, drug deliver, therapy adherence and general health and wellness applications. Regardless of the end use, developers of healthcare/medicals devices face similar challenges – the need to balance processing requirements with power consumption, support to ensure a fast time-to-market, the need for secure wireless connections and product longevity are all key to healthcare designers. This application receives information of all the sensors in a human body and upload this in the cloud, with this measurements the consumer can check his health if this has an illness. The i.MX 7 DUAL is a high performance MPU with high security modules to ensure the integrity of the information transmitted and received. Use Cases Consumer: Gather the information of all the sensors in the human body for health or sports training. Biomedical: Check the vital signs of a patient and uploaded it to the cloud, quick alerts if the patient is in danger. Block Diagram Products Category MPU Products URL i.MX 7Dual Processors - Heterogeneous Processing with dual Arm® Cortex®-A7 cores and Cortex-M4 core  Product Description The i.MX 7Dual family of processors represents our latest achievement in high-performance processing for low-power requirements with a high degree of functional integration.   Category Power Management Product URL PF3000: 12-Channel Configurable PMIC  Product Description The PF3000 power management integrated circuit (PMIC) features a configurable architecture that supports numerous outputs with various current ratings as well as programmable voltage and sequencing.   Category Wireless Product URL KW31Z: Kinetis® KW31Z-2.4 GHz Bluetooth Low Energy Wireless Radio Microcontroller (MCU) based on Arm® Cortex®-M0+ Core  Product Description The KW31Z is an ultra-low-power, highly-integrated single-chip device that enables Bluetooth® low energy v4.2 RF connectivity for portable, extremely low-power embedded systems.
記事全体を表示
Description   A shared power bank is the sharing economy business model (which has been booming in in recent years). A shared power bank is an publicly accessible charging station, which provides power bank to customers.   A common scenario would be a customer running low on battery on their mobile phone. Using a smartphone app they would locate a nearby charging station, for instance in a cafe. Each station has either six or twelve rechargeable batteries, which can be taken out of the box and connected to an iOS or Android device.   Features   Smartphone app to indicate where a nearby charging station is located Each station has either six or twelve rechargeable batteries   Block Diagram     Products     Category Name 1: MCU Product URL 1 Arm Cortex-M4|Kinetis K22 100 MHz 32-bit USB MCUs | NXP  Product Description 1 The Kinetis® K22 offers analog, communication, timing and control peripherals to meet diverse requirements   Category Name 2: Bluetooth Product URL 1 QN908x: Ultra-Low-Power Bluetooth Low Energy System on Chip (SoC) Solution | NXP  Product Description 1 QN908x integrates a Bluetooth Low-Energy radio, controller, protocol stack and profile software on a single chip, providing a flexible and easy to use Bluetooth Low Energy SoC solution.   Category Name 3: Peripherals Product URL 1 PCA9535A | NXP  Product Description 1 The PCA9535A is a low-voltage 16-bit General Purpose Input/Output (GPIO) expander with interrupt and reset for I²C-bus/SMBus applications.     Tools   Product Link FRDM-K22F: NXP Freedom Development Platform for Kinetis® K22 MCUs FRDM-K22F|NXP Development Platform|Kinetis® MCU | NXP  QN9080DK: A highly extensible platform for application development of QN908x QN9080DK: A highly extensible platform for application development of QN908x | NXP 
記事全体を表示
Built to automotive grade specifications, this Qi compliant wireless charging reference design charges up devices in the car. The devices can integrate into the dash or center console of car.     https://community.nxp.com/players.brightcove.net/4089003392001/default_default/index.html?videoId=4282648274001" style="color: #05afc3; background-color: #ffffff; font-size: 14.4px;" target="_blank   Features Wireless Charging Reference design for Automotive applications Integration into dash board or center console 5 Watts of power following Qi standard Near field Communication (NFC) Loop included   Featured NXP Products 5 Watt Wireless Automotive 5 Watt Wireless Industrial Links WCT-5WTXAUTO: Multi-Coil Wireless Charging Tr Block Diagram  
記事全体を表示
Demo       NXP makes the securely connected, self-driving car a reality.  2,500 NXP automotive engineers combine unique competencies in Analog/RF and Automotive Microcontrollers. Together they have designed true, world-class solutions making us the   #1 in Car Infotainment, #1 in Secure Car Access, #1 in In-Vehicle Networking, #1 in Body #1 in Safety.   Features enabled by NXP •ADAS & SECURITY •INFOTAINMENT •VEHICLE NETWORKING •BODY •SAFETY •SECURE CAR ACCESS •POWERTRAIN & CHASSIS •STANDARD PRODUCTS   Recommended Products •TUNERS •SOFTWARE-DEFINED DIGITAL RADIO •MULTIMEDIA PROCESSORS •SOUND SYSTEM DSPs & AMPLIFIERS •NFC BT PAIRING •WIRELESS POWER CHARGING •POWER MANAGEMENT •CAN/LIN/ FLEXRAY •ETHERNET •CENTRAL GATEWAY CONTROLLER •SECURITY •RF •MICROCONTROLLERS •POSITION/ ANGLE SENSORS •SYSTEM BASIS CHIPS •MICROCONTROLLERS AIRBAG •ANALOG AIRBAG •MICROCONTROLLERS BRAKING •ANALOG BRAKING •SENSORS BRAKING •TIRE PRESSURE MONITORING •IMMOBILIZER/ SECURITY •REMOTE KEYLESS ENTRY •PASSIVE KEYLESS ENTRY/ GO •BI-DIRECTIONAL KEYS •NFC •ULTRA WIDE BAND •MICROCONTOLLERS •PRESSURE/ MOTION SENSORS •BATTERY MANAGEMENT •DRIVERS
記事全体を表示
The MPC5777C and MPC5676R  Powertrain processors are ideal for Hybrid Powertrain applications. Dual e200z7 cores in conjunction with three NXP eTPU complex timer units provide the capabilities to control the electric motors, combustion engines, battery management tasks and inverters used within a Hybrid Powertrain. This demonstration shows function sets available from NXP being used to control a basic Hybrid Powertrain. The accompanying Hybrid Run game provides interaction with the demo. Drive the fastest lap you can, but don't run out of energy!       Features Qorivva MPC5777C and MPC5676R dual-core automotive MCU controls a hybrid powertrain NXP eTPU function sets control PMSM electric traction motor and internal combustion engine Drive the hybrid game—get the fastest lap but do not run out of energy Featured NXP Products MPC5676R Block Diagram
記事全体を表示
Demo Owner Brian Gildon   Timesys Vice President of Business Development, Brian Gildon demonstrates various NXP based applications for optimized performance devices. Demonstrations include  NXP's Vybrid TWR-VF65GS10 board on Linux, a fast boot demonstration using i.MX 6 platform on Linux and finally a Sabre SDP a multi-touch interface design for designers who want simple branding.   Features Timesys - Linux tools services and training First demo: Vybrid tower board demo RTOS and Linux running simultaneously Second demo: Boot up Android quickly from a cold boot Third demo: Accelerated video demo vs non-accelerated video comparison Fourth demo: QT widget support on a multi-touch interface   Product Link SABRE Board for Smart Devices Based on the i.MX 6Quad Applications Processors i.MX 6Quad SABRE Development Board | NXP  VFxxx Controller Solutions VFxxx Controller Solutions based on Arm® Cortex® A5 and M4 Cores | NXP  Links Tymesys  
記事全体を表示
Demo Need to increase the power of your system? Check out our MRFX1K80H design reuse video to see the benefits of 65 V technology in action. In this video, Danny Molezion, FAE from Richardson RFPD and Jim Davies, NXP Applications Engineer swap out NXP’s 1250 W device with the MRFX1K80H device using the same PCB. Product www.nxp.com/65V www.nxp.com/MRFX1K80H   Links http://www.richardsonrfpd.com/NXP65V Press Release|NXP 
記事全体を表示
Demo Owner Jeff Steinheider   Streaming video over the LTE link + calls running between WCDMA phones running off the same BSC9132 device. Watch how this dual-mode enterprise picocell shows the capability of the QorIQ Processing Platforms Qonverge BSC9132 SoC with NXP's multimode LTE and WCDMA Layer 1 software.     Features Simultaneous LTE and WCDMA operation Provide solution to coverage and capacity concerns in enterprise and office environments Featured NXP Products Product Link QorIQ Qonverge® Platform: Baseband Processor QorIQ Qonverge® Platform: Baseband Processor | NXP  QorIQ® Qonverge BSC9132 Dual-core Processor and Dual-core DSP QorIQ® Qonverge B9132 | NXP  VortiQa Layer 1 Baseband Software https://www.nxp.com/design/software/development-software/vortiqa-software-for-networking/vortiqa-layer-1-baseband-software:VORTIQA_L1SW_SC?&tid=SWnT QorIQ® Qonverge BSC9132 QDS for Picocell Base Station Development https://www.nxp.com/design/qoriq-developer-resources/qoriq-qonverge-bsc9132-qds-for-picocell-base-station-development:BSC9132QDS?&parentCode=BSC9132 Block Diagram  
記事全体を表示
  Description Biometric authentication devices use an MCU or MPU to perform biometrics with the integration of peripherals such as a PC or a wireless connectivity module to communicate with a certain database. Some examples of this functionality include secure access to personal or confidential information, control access to a certain location or secure money transactions. Block Diagram Products Category Name 1 Microcontroller Product URL 1 Arm® Cortex®-M4|Kinetis K81 150 MHz 32-bit MCUs | NXP  Product Description 1 The Kinetis® K81 MCU offers advanced security capabilities including anti-tamper peripheral, boot ROM to support encrypted firmware updates, automatic decryption from external serial flash memory, AES acceleration, and hardware support for public key cryptography. The K81 has a QSPI controller optimized for XIP from external serial NOR flash memories with support for quad and octal data interfaces. Product link 2 Arm® Cortex® -M4|Kinetis K82 150 MHz Secure MCUs | NXP  Product Description 2 The Kinetis K82 MCU contains automatic decryption from external serial NOR flash memory, hardware AES acceleration with sideband attack protection, and hardware support for public key cryptography. The K82 also features advanced security capabilities including boot ROM to support encrypted firmware updates. Product link 3 LPC55S6x|Arm® Cortex®-M33|32-bit Microcontrollers (MCUs) | NXP  Product Description 3 The LPC55S6x MCU introduces new levels of performance and advanced security capabilities including TrustZone-M and co-processor extensions. The co-processors extensions and leverages brings significant signal processing efficiency gains from a proprietary DSP accelerator offering a 10x clock cycle reduction.   Category Name 2 Microprocessor Product URL 1 i.MX 6ULL Applications Processor | Single Arm® Cortex®-A7 @ 900 MHz | NXP  Product Description 1 The i.MX 6ULL is a power efficient and cost-optimized applications processor which operates at speeds up to 900 MHz and has a dedicated Security Block: TRNG, Crypto Engine (AES with DPA, TDES/SHA/RSA), Secure Boot and a 24-bit Parallel CMOS Sensor Interface module for multiedia processing.   Category Name 3 Power Management IC Product URL 1 12-channel configurable PMIC | NXP  Product Description 1 The PF3000 features a configurable architecture that supports numerous outputs with various current ratings as well as programmable voltage and sequencing. With a I2C interface and the 12 channel the PF3000 delivers a total power of 7.2 A.   Category Name 4 BLE Transceiver Product URL 1 QN908x: Ultra-Low-Power Bluetooth Low Energy System on Chip (SoC) Solution | NXP  Product Description 1 The QN908x is an ultra-low-power, high-performance and highly integrated Bluetooth Low Energy designed for human interface devices with a small capacity battery.   Category Name 5 LCD Driver Product URL 1 Universal LCD driver for low multiplex rates | NXP  Product Description 1 The PCF85133 is a peripheral device which interfaces to almost any Liquid Crystal Display (LCD) with low multiplex rates up to 80 segments, compatible with most microcontrollers and communicates via the two-line bidirectional I²C-bus.   Category Name 6 12V Smart Power Amplifier Product URL 1 TFA9892|Smart Audio Amplifier | NXP  Product Description 1 The TFA9892 is very highly-efficient 12 V boost converter. It is equipped with a low-power CoolFlux™ DSP which runs an advanced algorithm for speaker boost and protection to bring high end audio quality into mainstream applications.   Category Name 7 Multi-protocol NFC frontend Product URL 1 CLRC663 plus | High-performance multi-protocol NFC frontend | NXP  Product Description 1 The CLRC663 plus is a high-performance NFC Frontend with a low power consumption. ) The CLRC663 is the perfect choice for NFC applications with high-performance requirements like access control with authentication. Related Documentation Document URL Title https://www.nxp.com/docs/en/application-note/AN11019.pdf CLRC663 Antenna Design Guide https://www.nxp.com/docs/en/application-note/AN11342.pdf How to Scale Down the NXP Reader Library https://www.nxp.com/docs/en/application-note/AN5331.pdf Offline Flash Programmer for Kinetis K- and L-series MCUs https://www.nxp.com/docs/en/application-note/AN12445.pdf LPC55S69 Asymmetric Cryptographic Accelerator CASPER https://www.nxp.com/docs/en/application-note/AN12278.pdf LPC55S69 Security Solutions for IoT https://www.nxp.com/docs/en/application-note/AN12282.pdf  Digital Signal Processing for NXP LPC5500 Using PowerQuad https://www.nxp.com/docs/en/application-note/AN5215.pdf  i.MX 6 Temperature Sensor Module - Application Note https://www.nxp.com/docs/en/nxp/application-notes/AN12194.pdf  QN908x RF Certification Guide https://www.nxp.com/docs/en/nxp/application-notes/AN11996.pdf  QN908x Hardware Design Considerations https://www.nxp.com/docs/en/application-note/AN10170.pdf  Design guidelines for COG modules with NXP® monochrome LCD drivers Related Software Related Software URL https://www.nxp.com/docs/en/application-note-software/AN5331SW.zip  https://www.nxp.com/docs/en/application-note-software/AN12445SW.zip  https://www.nxp.com/docs/en/application-note-software/AN12326SW.zip    Training Training URL and MCUXpresso Software and Tools  QN908X ISP HOWTO?  MHW-N1964 Designing Healthcare Applications with NXP  Related Demos from Communities Related Demos from Communities URL NFC Demos - Information, Source codes, Schematics  i.MX6 UL EMV Demo 
記事全体を表示
L-Band transponder application demo     Features High Power (up to 300 W) 978 MHz - 1090 MHz Featured NXP Products AFIC10275N  
記事全体を表示
Demo Radar-detected Emergency Break via V2X to following traffic. RoadLink V2X platform, Ethernet Switch & 77GHz Radar Dolphin transceiver Video Link : 5257 Features enabled by NXP Disrupting the market with an RFCMOS Radar-solution: •Highly integrated, minimal-footprint •Low Power Consumption •Sophisticated Functional Safety Features •Fully invisible mounting •Attractive System Cost Recommended Products •RoadLink Chipset •RF Transceiver (TEF5x00) •Baseband IC (SAF5x00) •Security IC (SXF1700) •Dolphin 77GHz Radar Chip •Ethernet Switch Resources Website http://www.nxp.com/products/rf/millimeter-wave-solutions/radar-technology:RADAR-TECH http://www.nxp.com/products/rf/millimeter-wave-solutions/radar-technology:RADAR-TECH
記事全体を表示
FIDO enabled USB/NFC and BLE reference design allow secure access to cloud and IoT services   Background   The FIDO Alliance is working hard to change the way to authenticate to cloud services. And, as we demonstrate in this setup, its flexible design is also changing the way how we authenticate to IoT devices.           FIDO supported web services The list of FIDO U2F supported web services is growing   So far the following companies support FIDO U2F keys: Google Dropbox Github   FIDO U2F Authentication Keys The USB/NFC reference design provides USB for Laptop and PC  access while the NFC interface enables mobile devices like cell phones and tablets. The smart card form factor provides NFC and ISO7816 and can be used with traditional smart card readers as well as NFC enabled devices. The BLE reference design in combination with the A7x secure element enables U2F Authentication via the BLE interface.   FIDO U2F Server SurePassID Edge Server Cloud SurePassID Edge Server local Recommended Products Secure Element (A700x, A7101) Standard Microcontroller (LPC11Ux) Ultra Low Power BLE System-on-Chip Solution (QN9020) Dual-Core Communications Processor (LS1021A) FIDO U2F Server (SurePassID
記事全体を表示
New Family of Doherty IC Power Amplifiers Coupled with a Dual-Path Pre-distortion Linearizer Demo / product features A2I20D040N 5 W final 42% efficiency 1.8-2.2 GHz wideband Doherty NXP’s A2I20D040N The Maxim SC2200 dual path linearizer enhances the already high linearity of the NXP devices with LTE signals as wide as 3x20 MHZ Maxim’s solution provides improvement of up to 28 dB in ACLR and 38 dBm in IMD NXP Recommends A2I20D040Nhttp://www.nxp.com/products/rf/rf-power-transistors/rf-cellular-infrastructure/1450-2200-mhz/1400-2200-mhz-5-w-avg.-28-v-wideband-integrated-rf-ldmos-amplifier:A2I20D040N?fsrch=1&sr=1&pageNum=1 SC2200: www.maximintegrated.com/SC2200 Fast-track 5G with NXP Application Note AN5296 - Effective Small Cell Solutions for MIMO Radios
記事全体を表示