Multi Source Translation Content

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Multi Source Translation Content

讨论

排序依据:
BSP Security Maintenance NXP Webinar: April 23, 2020
查看全文
Known issues for Sensor Fusion Build 420 This posting summarizes known issues, not already in the errata) for Sensor Fusion Build 420: FRDM-KL25Z, KL26Z, KL46Z, K20D50M and K64F boards shipped to date do not include pull-up resistors on the NMI pin.  This has reportedly caused applications to not start properly because of inadvertent non-maskable interrupts.   There are several possible ways to resolve this: Add the missing pull-up resistor Disable the NMI during the first call to the NMI interrupt handler.  You can do that by replacing the existing default handler with:          // called on NMI          void Cpu_OnNMIINT(void)          {            // Disable NMI pin (some boards do not have pullups)            SIM_SCGC5 |= (uint32_t)SIM_SCGC5_PORTA_MASK; /* NMI and PORTA clock gate enable */            PORTA_PCR4 &= PORT_PCR_MUX_MASK;            /* enable input with pull up enable not NMI */            PORTA_PCR4 |= PORT_PCR_MUX(01) | PORT_PCR_PE_MASK | PORT_PCR_PS_MASK;            // return with no action            return;          } Add two new PE components.  One of type BitIO_LDD and the other of type Init_GPIO.  Between them you can assign PTA4 as an input GPIO with pullup enabled.  This has the advantage of requiring no changes to the .c or .h files. KDS builds using optimization level O3 do not properly execute the command interpreter within Events.c function UART_OnBlockReceived().  Change the project settings optimization level to O1 and it should work fine. It is possible for the Sensor Fusion Toolbox (both Windows and Android versions) to "fall out of sync" with the development board firmware with regard to desired sensor fusion algorithm being executed.  Symptoms and root causes are reviewed in the PDF attached to this posting. SensorFusion
查看全文
MathWorks による NXP Cup のサポート <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> MathWorks は、NXP Cup のグローバルスポンサーです NXP Cupチームのメンバーである場合は、MATLAB / Simulinkの無料のソフトウェアライセンスにアクセスできます。NXP Cup - MathWorks Deutschland の Web サイトにアクセスして、ソフトウェアの提供についての詳細をご覧ください。 NXP Cup での Simulink の使用例は、ハードウェア サポート ページから入手できる FRDM-KL25Z の Simulink Coder サポート パッケージにパッケージ化されています。ラインスキャンカメラからのライブデータの読み取りと解析のその他の例は、MATLAB File Exchangeの NXP Cup Companionアプリ で入手できます。さらに、 MathWorks の Simulink Coder 製品を使用して FRDM-KL25Z をターゲットとする例もあります。 MATLAB Answers のフォーラム、または以下のフォーラムを使用して、NXP Cup での MATLAB の使用について質問してください。また、質問がある場合は [email protected] に電子メールで送信することもできます。 フリースケール・カップの内容
查看全文
ASH WARE: Automotive Simulator Products ASH WARE's Andy Klump demonstrates a ETPU simulator as well as an MC33816 simulator at the FTF Americas 2014. Both simulators are popular in the automotive industry.       Features Demo of eTPU and MC33816 simulator. Both simulators are popular in the automotive industry Develop software in state machine visual tool Waveform window allows users to visualize different states using analog signals, single step, break points, etc. Featured NXP Products eTPU MC33816 Links Ash Ware   Automotive
查看全文
使用 FRDM-KL46 板上的 LCD 屏幕通过 KDS 显示加速度计数据 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> KDS中的加速度计   说明:   在 KDS 中制作的项目,使用 FRDM-MKL46Z256VLL4 板的 LCD 屏幕显示加速度计数据。 LCD 最初将显示 X 轴的加速度计数据。 按下 SW3 将切换显示其他轴。 我之前的项目中还包含一个计时器。 任何时候按下 SW1 都会将计时器重置为 0。   代码部分取自以下示例项目: https://github.com/ErichStyger/mcuoneclipse/tree/master/Examples/FRDM-KL46Z/FRDM-KL46Z_Demo <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> KDS中的加速度计   说明:   在 KDS 中制作的项目,使用 FRDM-MKL46Z256VLL4 板的 LCD 屏幕显示加速度计数据。 LCD 最初将显示 X 轴的加速度计数据。 按下 SW3 将切换显示其他轴。 我之前的项目中还包含一个计时器。 任何时候按下 SW1 都会将计时器重置为 0。   代码部分取自以下示例项目: https://github.com/ErichStyger/mcuoneclipse/tree/master/Examples/FRDM-KL46Z/FRDM-KL46Z_Demo 概述
查看全文
Processor Expert QorIQ Packet Tools   Features Packet Tools Software gives you insight you normally only get from sophisticated test equipment. Packet Tools uses the on-chip debug and trace capabilities of the QorIQ Processors to give you unprecedented insights into your system. This is the same insight you'll use to create real differentiation in your products. This video gives you a VERY quick overview of the Packet Tools so you can get a great idea of what the software is all about.   Featured NXP Products Processor Expert QorIQ Optimization Suite Processor Expert QorIQ Packet Analysis Tool Communications Infrastructure
查看全文
Using the Accelerometer on the FRDM-KL25 Board in KDS Accelerometer in KDS   Description:   This is a small project made in KDS using the accelerometer on a FRDM-KL25Z128M4 board. The program outputs the 3D position of the board to a terminal, such as Tera Term at 9600 baud. PWMs are also used, their intensity is dependent on the offset from the zero position. The red LED intensity increases with X offset. The blue LED intensity increases with Y offset. Simply press any key to begin data output.   Sections of code taken from http://mcuoneclipse.com/2012/09/21/tutorial-accelerating-the-kl25z-freedom-board/   Issues:   There seem to be 'dead zones' while the board is tilted towards a corner. The terminal will not output anything while in a 'dead zone'.   There will be a constant flicker of the LED even when the board is flat. This is due to the accelerometer occasionally outputting 1 even when the board is static. Accelerometer in KDS   Description:   This is a small project made in KDS using the accelerometer on a FRDM-KL25Z128M4 board. The program outputs the 3D position of the board to a terminal, such as Tera Term at 9600 baud. PWMs are also used, their intensity is dependent on the offset from the zero position. The red LED intensity increases with X offset. The blue LED intensity increases with Y offset. Simply press any key to begin data output.   Sections of code taken from http://mcuoneclipse.com/2012/09/21/tutorial-accelerating-the-kl25z-freedom-board/   Issues:   There seem to be 'dead zones' while the board is tilted towards a corner. The terminal will not output anything while in a 'dead zone'.   There will be a constant flicker of the LED even when the board is flat. This is due to the accelerometer occasionally outputting 1 even when the board is static. General
查看全文
Processor Expert QorIQ数据包工具 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   特性 Packet Tools 软件可为您提供通常只能通过复杂的测试设备才能获得的洞察力。 Packet Tools 使用QorIQ 处理器的片上调试和跟踪功能,为您提供对系统的前所未有的洞察。您可使用同样的洞察力来为您的产品创造真正的差异化。 本视频将为您提供该数据包工具的简单概述,帮助您快速了解该软件的功能。   特色恩智浦产品 Processor Expert QorIQ优化套件 Processor Expert QorIQ数据包分析工具 通信基础设施
查看全文
Industrial Graphics and Communication with the Layerscape LS1028A Microprocessor See how to use and demonstrate the differentiating features of the newest Layerscape processor, the LS1028A. This live class will show how to enable the graphical capabilities of the LS1028A with the LSDK, and also how to take advantage of the integrated Ethernet switch and TSN features. See how to use and demonstrate the differentiating features of the newest Layerscape processor, the LS1028A. This live class will show how to enable the graphical capabilities of the LS1028A with the LSDK, and also how to take advantage of the integrated Ethernet switch and TSN features. Layerscape Processing Platforms
查看全文
在 NXP 微控制器上轻松创建精彩图形.pdf <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 查看网络研讨会录音 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 查看网络研讨会录音 概述 回复:在 NXP 微控制器上流畅地创建精彩图形.pdf <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 点击此处查看录音
查看全文
MQX ™ RTOS 4.1.0.1补丁版本 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 新的 Freescale MQX ™ 4.1.0.1 补丁版本现已在www.freescale.com上发布。 ·         可用文件          # 名称 描述 1 FSL_MQX_4_1_0_1_发布说明 MQX ™ RTOS 4.1.0.1 补丁发布说明 2 飞思卡尔 MQX RTOS 4.1.0.1 补丁 此补丁版本基于 MQX ™ RTOS 4.1.0发布并提供发布版本中发现的软件问题的解决方案。 ·         补丁说明 哦   此补丁提供了针对 MQX 4.1.0 版本中发现的这些问题的软件解决方法: §  IPv6 ping 问题 ·         从未知主机 ping 时崩溃(仅限 IPv6)。 ·         使用 IPv6 ping 时产生未处理的中断。 §  TCP/UDP 问题 ·         IPv4 会随 SYN 发送 MSS 和窗口大小。某些防火墙会丢弃未包含 MSS 或窗口大小为零的 SYN。 ·         IPv6 UDP 关闭问题。IPv6 仅重用相同的 IP 和端口。 ·         修复了不正确的 RTCS_selectset() 解除阻塞。 §  APP协议问题 ·         TELNET 和 Eth_to_serial 性能改进。 ·         HTTPSRV 在搜索 SSI 时错误地访问会话缓冲区中的数据。 ·         FTPSRV 会话关闭缺少数据套接字的关闭。 §  BSP 问题 ·         由于 DDR 设置不正确,当 DDR2 SDRAM 使用率较高时,TWR-K70F120M BSP 会变得不稳定。
查看全文
ZigBee 3.0:在KW41Z上添加端点(Endpoint) [中文翻译版] 见附件   原文链接: https://community.nxp.com/docs/DOC-340508 KW41Z31Z21Z
查看全文
RDDSP56F8ACVCD: 3-Phase AC Induction Motor Control Reference Design Using 56F80X or 56F8300 DSCs Overview Features Block Diagram Board Design Resources Overview This reference design demonstrates a vector control technique of a 3-phase AC induction motor with a position encoder coupled to the motor shaft. The algorithm runs on Our 56F80X or 56F83XX Digital Signal Controller as the dedicated motor control device It can be adapted to NXP® 56F81XX Digital Signal Controllers The speed closed loop ACIM drive is implemented The system is targeted for applications in both industrial and appliance fields (e.g. washing machines, dishwashers, industrial drives, machine tools, variable speed drives, elevators etc.) Features Vector control technique used for ACIM control Targeted for 56F80X, 56F83XX, and 56F81XX Digital Signal Controllers Running on a 3-phase AC induction motor control development platform at variable line voltage 115/230V AC Encoder used for a speed calculation Control technique incorporates: Speed control loop with inner q axis stator current loop Rotor flux control loop with inner d axis stator current loop Field-weakening technique Stator phase currents measurement method DC-Bus ripple elimination Motor and generator mode DC-Bus brake Overvoltage, undervoltage, overcurrent and overheating fault protection FreeMASTER software control interface and monitor Block Diagram Board Design Resources Legacy Designs
查看全文
New SDK Generator Docs New SDK generator docs have been released. You can get it from: 1. SDK generator repo: https://bitbucket.sw.nxp.com/projects/MCUCORE/repos/mcu-sdk-generator/browse/doc  2. Gitbook: http://10.193.108.154:4000/ Here is a snapshot Getting Started With SDK Generator.md Getting Starts. It illustrates why we need sdk generator, how to install and use it. Basic concepts and working scenarios are introduced. Yaml Data Record Guide.md Illustrate yaml data record rule, syntax, concepts. It covers every aspect of the SDK data. Yaml Data Record For Project Settings.md Illustrate yaml data record syntax for project settings. Yaml Data Record Component Naming Conventions.md Illustrate SDK component naming conversation. Yaml Example Reference.md The reference index for yml/batch set demos. Release Actions Of SDK Generator.md Illustrate the release actions of SDK. SDK Docs Generation Flow.md Illustrate how to integrate SDK docs generation into sdk generator. How To Configure Release_config File.md Illustrate how to config release config yml. Frequently Asked Questions.md Frequently asked questions, still on-going, we will add more.  
查看全文
NXP Wireless Charging Solution Design—Deep Dive Today, wireless charging is not only used for mobile devices but also expanding to many industrial applications. This session will provide the in-depth technical detail and guidance of the design of wireless charging transmitter and receiver. Also a review of NFC/RFID cards protection that cover both low-power and medium-power applications. Today, wireless charging is not only used for mobile devices but also expanding to many industrial applications. This session will provide the in-depth technical detail and guidance of the design of wireless charging transmitter and receiver. Also a review of NFC/RFID cards protection that cover both low-power and medium-power applications.
查看全文
Example MPC5748G eMIOS BCTU ADC trigger S32DS2.1 ******************************************************************************** * Detailed Description: * * Example shows how to trigger ADC conversion on falling edge of PWM signal. * eMIOS ch1 is set to SAIC mode and a flag generated on selected edge detection * triggers BCTU channel which starts conversion of ADC1 ch9. On this channel * the board's trimmer is connected. * * EVB connection: * * J3.1 .. PA[1] - connect external PWM signal * J3.3 .. PA[2] - toggled in BCTU interrupt after ADC measurement * * ------------------------------------------------------------------------------ * Test HW: DEVKIT-MPC5748G * Maskset: 0N78S * Target : FLASH * Fsys: 160 MHz PLL * Debugger: Lauterbach * ******************************************************************************** Revision History: 1.0 Nov-5-2019 Petr Stancik Initial Version *******************************************************************************/ General
查看全文
Amazon Alexa音声サービス <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> Amazon Alexaは音声制御を永遠に変えました。Amazon Alexaの i.MX ベースのソリューションをご覧ください。リファレンスプラットフォーム、AVS認定システムIntegraotsを使用したソリューション、音声制御ソリューションを設計する際に考慮すべき重要な要素、およびAlexaを次世代デバイスに簡単に追加できる方法をご覧ください。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> Amazon Alexaは音声制御を永遠に変えました。Amazon Alexaの i.MX ベースのソリューションをご覧ください。リファレンスプラットフォーム、AVS認定システムIntegraotsを使用したソリューション、音声制御ソリューションを設計する際に考慮すべき重要な要素、およびAlexaを次世代デバイスに簡単に追加できる方法をご覧ください。
查看全文
带有CANLIN MC33907/908的FS PowerSBC资源 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> MC33907/33908 是带有高速 CAN 和 LIN 收发器的电力系统基础芯片。 PN 为: 资源为: 最新版本数据表: https://www.nxp.com/docs/en/data-sheet/MC33907-MC33908D2.pdf 安全手册: https://www.nxp.com/webapp/sps/download/preDownload.jsp?render =true 硬件指南: https://www.nxp.com/webapp/sps/download/pending.jsp MPC5744P 和 MC33907/08 的安全应用: https://www.nxp.com/docs/en/application-note/AN5099.pdf 封装信息: https://www.nxp.com/docs/en/application-note/AN4388.pdf 变更信息: https://www.nxp.com/docs/en/product-change-notice/PCN16630.htm EVB 和工具: MC33908 | 安全系统基础芯片 DC/DC 高达 1.5A | 恩智浦 MPC5643L 和 MC33908 SBC 的 EVB|恩智浦 评估套件 - MC33908,带降压、升压、LIN 的安全 SBC|NXP 评估子板 - NXP MPC5744P,32位微控制器|NXP HEV/EV 和 BMS EVB 适配器板|恩智浦                            参考设计:恩智浦 - 合作伙伴简介信息 更多信息和文档,请联系当地 NXP 支持。 BRS    本文档由以下讨论生成: FS PowerSBC 与 CANLIN MC33907/908 资源 MC339078
查看全文
如何使用面向动力总成和VDS应用的Green Box平台 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 如何借助Green Box开发工具进行面向新一代汽车动力和安全(VDS)应用的S32P2/S2器件的早期开发。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 如何借助Green Box开发工具进行面向新一代汽车动力和安全(VDS)应用的S32P2/S2器件的早期开发。
查看全文
ハンズオンワークショップ:i.MX RTの概要とトレーニング <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> このクラスでは、i.MX RTシリーズの概要、主要な周辺機器、i.MX RT EVKを使用したハンズオンチュートリアルを提供します。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> このクラスでは、i.MX RTシリーズの概要、主要な周辺機器、i.MX RT EVKを使用したハンズオンチュートリアルを提供します。
查看全文