Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
EMEA NXP Cup 2017 考拉赛车手 - 德国.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
Custom HCI command HCI Application is a Host Controller Interface application which provides a serial communication to interface with the KW40/KW41/KW3x/QN9080 BLE radio part. It enables the user to have a way to control the radio through serial commands. The format of the HCI Command Packet is composed by the following parts. Figure 1. HCI Command Packet Each command is assigned a 2 byte Opcode which is divided into two fields, called the OpCode Group Field (OGF) and OpCode Command Field (OCF). The OGF uses the upper 6 bits of the Opcode, while the OCF corresponds to the remaining 10 bits. The OGF of 0x3F is reserved for vendor-specific debug commands. The organization of the opcodes allows additional information to be inferred without fully decoding the entire Opcode.  For further information regarding this, please check the BLUETOOTH SPECIFICATION Version 5.0 | Vol 2, Part E, 5.4 EXCHANGE OF HCI-SPECIFIC INFORMATION.  This document will guide you through the implementation of custom HCI commands in the KW36, but it can be applied as well for the rest of the NXP Bluetooth LE MCU’s that support HCI. The following changes were made and tested in the FREEDOM KW38 and will generate a continuous with both channel and power configurable.      You will need to perform the following changes to the HCI black box demo. Modify the hci_transport.h public constants and macros section by adding: #define gHciCustomCommandOpcodeUpper (0xFC90) #define gHciCustomCommandOpcodeLower (0xFC00) #define gHciInCustomVendorCommandsRange(x) (((x) <= gHciCustomCommandOpcodeUpper) && \ ((x) >= gHciCustomCommandOpcodeLower))‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍   In this case, the opcodes 0xFC90 to 0xFC00 are not used by our stack. These opcodes meet the requirements for vendor specific commands (OCF = 3F). Then you will need to declare the handler for the custom command.   void Hcit_InstallCustomCommandHandler(hciTransportInterface_t mCustomInterfaceHandler);‍‍‍‍‍     In the  hcit_serial_interface.c modify the following : Add in the private memory declarations section static hciTransportInterface_t mCustomTransportInterface = NULL;‍‍‍‍‍ Change the Hcit_SendMessage as it is shown:   static inline void Hcit_SendMessage(void) { uint16_t opcode = 0; /* verify if this is an event packet */ if(mHcitData.pktHeader.packetTypeMarker == gHciEventPacket_c) { /* verify if this is a command complete event */ if(mHcitData.pPacket->raw[0] == gHciCommandCompleteEvent_c) { /* extract the first opcode to verify if it is a custom command */ opcode = mHcitData.pPacket->raw[3] + (mHcitData.pPacket->raw[4] << 8); } } /* verify if command packet */ else if(mHcitData.pktHeader.packetTypeMarker == gHciCommandPacket_c) { /* extract opcode */ opcode = mHcitData.pPacket->raw[0] + (mHcitData.pPacket->raw[1] << 8); } if(gHciInCustomVendorCommandsRange(opcode)) { if(mCustomTransportInterface) { mCustomTransportInterface( mHcitData.pktHeader.packetTypeMarker, mHcitData.pPacket, mHcitData.bytesReceived); } } else { /* Send the message to HCI */ mTransportInterface( mHcitData.pktHeader.packetTypeMarker, mHcitData.pPacket, mHcitData.bytesReceived); } MEM_BufferFree( mHcitData.pPacket ); mHcitData.pPacket = NULL; mPacketDetectStep = mDetectMarker_c; }‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍   Implement the registration of the handler void Hcit_InstallCustomCommandHandler(hciTransportInterface_t mCustomInterfaceHandler) { OSA_EXT_InterruptDisable(); mCustomTransportInterface = mCustomInterfaceHandler; OSA_EXT_InterruptEnable(); return; }‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍    Once those changes are done, we will need to modify the  hci_black_box.c with the following changes.  Add the files to support HCI Custom commands. #include "hci_transport.h" #include "fsl_xcvr.h"‍‍‍‍‍‍‍‍‍‍   Define the custom commands, in this case, we will create some to turn ON/OFF the continuous wave as well as to set up the channel and power.  //@CC custom command #define CUSTOM_HCI_CW_EVENT_SIZE (0x04) #define CUSTOM_HCI_EVENT_SUCCESS (0x00) #define CUSTOM_HCI_EVENT_FAIL (0x01) ‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍ Also, adding some app auxiliar variables  static uint16_t channelCC = 2402; static uint8_t powerCC = 0x3E; Create the custom event packet  uint8_t eventPacket[6] = {gHciCommandCompleteEvent_c, CUSTOM_HCI_CW_EVENT_SIZE, 1, 0, 0, 0 };‍‍‍‍‍ In the main_task() after the BleApp_Init() register the callback for the custom commands.   /* Initialize peripheral drivers specific to the application */ BleApp_Init(); //Register the callback for the custom commands. Hcit_InstallCustomCommandHandler(BleApp_CustomCommandsHandle);‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍   Once that it’s added, add the handler for the command   bleResult_t BleApp_CustomCommandsHandle(hciPacketType_t packetType, void* pPacket, uint16_t packetSize) { uint16_t opcode = 0; uint8_t error=0; switch(packetType) { case gHciCommandPacket_c: opcode = ((uint8_t*)pPacket)[0] + (((uint8_t*)pPacket)[1] << 8); if (opcode >= 0xfc00 & opcode <= 0xfc50) { channelCC = 2400+(opcode - 0xfc00); eventPacket[5] = CUSTOM_HCI_EVENT_SUCCESS; } else if (opcode <= 0xfc70) { powerCC = (opcode-0xfc50)*2; if (gXcvrSuccess_c ==XCVR_ForcePAPower(powerCC) eventPacket[5] = CUSTOM_HCI_EVENT_SUCCESS; else eventPacket[5] = CUSTOM_HCI_EVENT_FAIL; } else if (opcode == 0xfc80) { if (gXcvrSuccess_c == XCVR_DftTxCW(channelCC*1000000)) { eventPacket[5] = CUSTOM_HCI_EVENT_SUCCESS; } else eventPacket[5] = CUSTOM_HCI_EVENT_FAIL; } else if(opcode == 0xfc90) { XCVR_ForceTxWd(); /* Initialize the PHY as BLE */ XCVR_Init(BLE_MODE, DR_1MBPS); eventPacket[5] = CUSTOM_HCI_EVENT_SUCCESS; } else { eventPacket[5] = CUSTOM_HCI_EVENT_FAIL; } eventPacket[3] = (uint8_t)opcode; eventPacket[4] = (uint8_t)(opcode >> 8); Hcit_SendPacket(gHciEventPacket_c, eventPacket, sizeof(eventPacket)); break; default: break; } ‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍} The format of this HCI command is: 01 XX FC 00 Where: When 0<=XX<=50: set the transmitting channel. The transmitting frequency is (2400+XX (in hexadecimal) )*1000MHz When 50 <70: set the transmitting power. 51 is the minimum Tx power and 69 corresponds to the maximum Tx power. When XX = 80: start the CW transmission When XX = 90: Stop the CW transmission For example, if you want to transmit a CW on the frequency 2420MHz at maximum frequency, you should send the following command: 01 14 FC 00 01 69 FC 00 01 80 FC 00 whenever you want to change the channel or Tx power, please stop the ongoing Tx first by sending 01 90 FC 00 Then repeat the previous step. If you want to add some parameter to it, please consider that the fourth byte of the packet will correspond to the number of parameters to enter and you will need to indicate it there. 
View full article
車載用セーフティSBCを選択 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 詳細情報、plsはで見つけます:https://www.nxp.com/docs/en/brochure/SBCAUTOBRA4.pdf                                               機能安全SBC|NXPの  このドキュメントは、次のディスカッションから作成されました: Automotive に選ばれた安全 SBC 機能安全 電源ソリューション
View full article
PMIC PF1550 + i.MX Processors Resource PF1550 is PMIC which can provide full power solution for i.MX 7ULP, i.MX 6SL, 6UL, 6ULL 6SX and RT processors-based, battery-powered systems. Especially for low-power portable, smart wearable and IoT applications. The PN of PF1550: The resource of PF1550 include: The latest version Datasheet:https://www.nxp.com/docs/en/data-sheet/PF1550.pdf The latest version Schematic Guideline:https://www.nxp.com/docs/en/application-note/AN12055.pdf EVM board Schematic:https://www.nxp.com/downloads/en/schematics/SCH-29660.pdf EVM Board User Guide:https://www.nxp.com/docs/en/user-guide/KTFRDMPF1550EVMUG.pdfhttps://www.nxp.com/docs/en/user-guide/KTFRDMPF1550EVMUG.pdf EVM information and Tools download:https://www.nxp.com/support/developer-resources/evaluation-and-development-boards/analog-toolbox/pf1550-evaluation-board-for-low-power-application-processors:FRDM-PF1550EVM Other information:https://www.nxp.com/products/power-management/pmics/power-management-for-i.mx-application-processors/pmic-with-1a-li-plus-linear-battery-charger-for-low-power-processor-systems:PF1550 For NDA documents and resource ,pls contact the local NXP supporter.     This document was generated from the following discussion: PMIC PF1550 + i.MX Processors Resource PF1550 | PF1510
View full article
高性能設計におけるDDRの課題の克服 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> DDR4(およびそれ以降)は、シミュレーション後でもDDR構成の複雑さを劇的に増やしました。さらに重要なことは、DDRの適切なパラメータを知ることが、製品のパフォーマンスを左右する可能性があることです。DDR機能をボード上で直接構成、最適化、検証する方法を学びます。データアイマージンを取得するためのツールと手法を理解し、DDRボードの立ち上げと機能検証の時間を数週間から数時間に短縮します。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> DDR4(およびそれ以降)は、シミュレーション後でもDDR構成の複雑さを劇的に増やしました。さらに重要なことは、DDRの適切なパラメータを知ることが、製品のパフォーマンスを左右する可能性があることです。DDR機能をボード上で直接構成、最適化、検証する方法を学びます。データアイマージンを取得するためのツールと手法を理解し、DDRボードの立ち上げと機能検証の時間を数週間から数時間に短縮します。
View full article
Android N7.1.1_1.0.0 Release Announcement The i.MX Android N7.1.1_1.0.0 release is now available on Web Site (i.MX6 BSP Updates and Releases -> Android).   Files available: # Name Description 1 android_N7.1.1_1.0.0_docs.tar.gz i.MX Android N7.1.1_1.0.0 BSP Documentation 2 android_N7.1.1_1.0.0_source.tar.gz Source Code of Android N7.1.1_1.0.0 BSP (4.1 kernel) for i.MX 6QuadPlus, i.MX 6Quad, i.MX 6DualPlus, i.MX 6Dual, i.MX 6DualLite, i.MX 6Solo  i.MX 6Sololite, i.MX6SX and i.MX7D 3 android_N7.1.1_1.0.0_image_6dqpsabreauto.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - SABRE for Automotive Infotainment based on i.MX 6QuadPlus, i.MX 6Quad, and i.MX 6DualLite 4 android_N7.1.1_1.0.0_image_6dqpsabresd.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - SABRE Platform and SABRE Board based on i.MX 6QuadPlus, i.MX 6Quad and i.MX 6DualLite. 5 android_N7.1.1_1.0.0_image_6slevk.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - i.MX 6Sololite evaluation kit. 6 android_N7.1.1_1.0.0_image_6sxsabresd.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - SABRE Board based on i.MX 6SoloX 7 android_N7.1.1_1.0.0_image_6sxsabreauto.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - SABRE for Automotive infotainment based on i.MX 6SoloX 8 android_N7.1.1_1.0.0_image_7dsabresd.tar.gz Binary Demo Files of Android N7.1.1_1.0.0 BSP - SABRE Board based on i.MX 7Dual 9 android_N7.1.1_1.0.0_tools.tar.gz Manufacturing Toolkit and VivanteVTK for N7.1.1_1.0.0   Supported Hardware SoC/Boards: MX 6Quad, i.MX 6QuadPlus, and i.MX 6DualLite SABRE-SD board and platform MX 6Quad, i.MX 6QuadPlus, and i.MX 6DualLite SABRE-AI board and platform MX 6SoloLite EVK platform MX 6SoloX SABRE-SD board and platforms MX 6SoloX SABRE-AI board and platforms MX 7Dual SABRE-SD board and platform   Changes: Compared to the M6.0.1_2.1.0 release, this release has the following major changes: Upgraded the Android platform version to Android 7.1. Upgraded the U-Boot and Linux Kernel Code base from the L4.1.15_1.0.0 release to the L4.1.15_1.2.0-ga release. Added support for the i.MX 7Dual SABRE-SD board. Upgraded the GPU driver from 5.0.11p8 to 6.2.0.p2.   Feature: For features please consult the release notes.   Known issues For known issues and more details please consult the Release Notes. Android i.MX6_All i.MX6DL i.MX6Dual i.MX6DualPlus6QuadPlus i.MX6Quad i.MX6S i.MX6SL i.MX6SoloX i.MX7Dual i.MX7Solo Re: Android N7.1.1_1.0.0 Release Announcement 1. What was changed in GPU driver between 5.0.11p8 and 6.2.0.p2? 2. Is Vulkan API available?
View full article
克服高性能设计中的 DDR 挑战 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> DDR4(及后续版本)显著增加了 DDR 配置的复杂性 - 即使经过模拟也是如此。更重要的是,了解 DDR 的正确参数可以决定产品的性能。了解如何直接在您的电路板上配置、优化和验证 DDR 功能。了解获取数据眼图裕度的工具和技术,将 DDR 板启动和功能验证的时间从几周缩短到几小时。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> DDR4(及后续版本)显著增加了 DDR 配置的复杂性 - 即使经过模拟也是如此。更重要的是,了解 DDR 的正确参数可以决定产品的性能。了解如何直接在您的电路板上配置、优化和验证 DDR 功能。了解获取数据眼图裕度的工具和技术,将 DDR 板启动和功能验证的时间从几周缩短到几小时。
View full article
例 MPC5674F MPU 初期化 CW210 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ******************************************************************************** *詳細な説明: * MPUは、すべてのリソース(フラッシュ、RAM、ペリフェラルブリッジ)をカバーするように初期化されています。 * すべてのマスターは、すべてのリソースから読み取り、書き込み、実行が許可されています。 * ※簡易テストケースは、アクセス時のMPUの動作確認に使用します *違反: * - MPUは、最初の1KBまたはRAMメモリへの書き込みアクセスを無効にするように再構成されます *(0x4000_0000 - 0x4000_03FF)。 * - このRAM領域を書き込むと、マシンチェック例外がトリガーされます * ------------------------------------------------------------------------------ *テストHW:XPC567XKIT516 - MPC5674ADAT516 Rev.C、MPC567XEVBFXMB Rev.B ※MCU:PPC5674FMVYA264 * Fsys:264MHz *デバッガ:Lauterbach Trace32 *対象:RAM、internal_FLASH * ********************************************************************************
View full article
CWARMv7 Uboot/Barebox デバッグ <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
Open Industrial Linux® (OpenIL)—Secure, Robust, Real-Time for Industrial and Automation Applications_Connects China OpenIL is Linux® distro designed specifically for the industrial market. OpenIL is an ideal deployment for PLC, HMI, industrial control and automation systems. As an open source project based on buildroot to provide a compact filesystem for industrial usage, OpenIL supports LTS Linux kernel 4.1 and 4.9, Xenomai cobalt core, industrial IEEE®1588, time sensitive networking and many other features. A real-time baremetal framework supports relay control and robotic applications. Learn about OpenIL, the architecture, design objectives and roadmap. Understand how you can contribute to OpenIL and drive the direction of the community project. OpenIL is Linux® distro designed specifically for the industrial market. OpenIL is an ideal deployment for PLC, HMI, industrial control and automation systems. As an open source project based on buildroot to provide a compact filesystem for industrial usage, OpenIL supports LTS Linux kernel 4.1 and 4.9, Xenomai cobalt core, industrial IEEE®1588, time sensitive networking and many other features. A real-time baremetal framework supports relay control and robotic applications. Learn about OpenIL, the architecture, design objectives and roadmap. Understand how you can contribute to OpenIL and drive the direction of the community project.
View full article
Type-C エンドツーエンド Solution_Connect 中国 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> NXPのUSB Type-C向けエンドツーエンドソリューションは、電源用のAC/DCコンバータ、PD PHYおよびCCロジックコントローラ、直接充電、信号リドライバ、信号スイッチ、負荷スイッチ、認証など、お客様の設計に使いやすく統合できます。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> NXPのUSB Type-C向けエンドツーエンドソリューションは、電源用のAC/DCコンバータ、PD PHYおよびCCロジックコントローラ、直接充電、信号リドライバ、信号スイッチ、負荷スイッチ、認証など、お客様の設計に使いやすく統合できます。
View full article
APU编程 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 索引|上一页|下一页 视频详细介绍了 APU(内核)编程 (在 “我的视频” 中查看)
View full article
Apex プログラミングモデル <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> インデックス | 前へ | 次に このビデオでは、Apex のプログラミングモデル、APU と ACF のプログラミングの違い、およびこれに関連する HW ブロックについて説明します。また、カーネル、グラフ、プロセスの概念についても説明します。 (マイビデオで視聴)
View full article
Install drivers and generate a USB Dongle License This document, is a short guide for the installation of USB Dongle Drivers and explain how  to generate a license. #usb dongle‌ dongle #license manager‌ #floating license‌ #license issues‌
View full article
Command line option “-asm_enhance” Usage (CW for S12Z) Recently we helped a customer resolve a question related with “asm_enhance”command line option usage. It’s strange there is no documentation of this knowledge in CodeWarrior help manual. After many discussions with development team, it gets clear to me. So I wrote an article on this topic for sharing.   “ -asm_enhance” option is added in ColdWarrior10 /CodeWarrior11 “compiler setting”, “General”, “Other Flags”:   "-asm_enhance" command line option can be used for two distinct aspects: Enabling inline assembly data optimizations Enabling stack effect computation through inline assembly code. These two aspects were all gathered under the same option because they both are referring to enhanced inline assembly – i.e. inline assembly code that gets handled almost as C code). Thank for the great support from Bogdan Ditu . For more information on -asm_enhance, see attached document.
View full article
BugBusters_Milestone_1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ロボットを制御するためのシンプルなWebインターフェース。移動用のボタンとロボット出力用のコンソールが含まれています。 (マイビデオで視聴) Linux Embedded Challenge 2017 (英語)
View full article
MEasy HMI QT Demo on i.MX6UL/6ULL MYD-Y6ULX Development Board The MEasy HMI developed by MYIR is a set of human-machine interfaces which contains a local HMI based on QT5 and a Web HMI based on Python2 back-end and HTML5 front-end. It runs on development boards with LCD, touch panel, Ethernet and so on. The dependency software includes dbus, connman and QT5 applications, python, tornado and other components. The video gives a demonstration on how to use the examples in MEasy HMI on MYIR's MYD-Y6ULX development board. It also applies to MYIR's MYS-6ULX Single Board Computer.
View full article
例MPC5777C プログレシブクロックスイッチング GHS716 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ******************************************************************************** *詳細な説明: * この例は、フルPLLクロックからのプログレッシブクロックスイッチングを示しています * 256MNHzは200MHzまで。 * * --------------------------------------------------------------------------------------------- *テストHW:MPC57xx *マスクセット:3N45H ※対象:FLASH * Fsys:256 MHz PLL * ******************************************************************************** 改訂履歴: 1.0 2016年8月4日 b21190(VLNA Peter)初期バージョン 1.1 Sep-05-2017 b21190(Vlna Peter) FCCUの障害クリアを追加 1.2 2018年5月7日 nxa13250(Vlna Peter) PLLスイッチを256->200MHzから *******************************************************************************/ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ******************************************************************************** *詳細な説明: * この例は、フルPLLクロックからのプログレッシブクロックスイッチングを示しています * 256MNHzは200MHzまで。 * * --------------------------------------------------------------------------------------------- *テストHW:MPC57xx *マスクセット:3N45H ※対象:FLASH * Fsys:256 MHz PLL * ******************************************************************************** 改訂履歴: 1.0 2016年8月4日 b21190(VLNA Peter)初期バージョン 1.1 Sep-05-2017 b21190(Vlna Peter) FCCUの障害クリアを追加 1.2 2018年5月7日 nxa13250(Vlna Peter) PLLスイッチを256->200MHzから *******************************************************************************/
View full article
TDC_Milestone_1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ビデオはOBD2プロトコルを使用して行われた接続を示しています、この現在の実装は接続を開き、現在のRPMを読み取り、単に画面に印刷します。2番目のビデオは、最初のビデオと同じ方法で測定するマニホールドプレシュアを示しています。 (マイビデオで視聴) Linux Embedded Challenge 2017 (英語)
View full article
EUF-DES-T2474 - Interface Solutions Want to know more about USB Type-C or Secure Authentication? Don't miss this slot. Want to know more about USB Type-C or Secure Authentication? Don't miss this slot.
View full article