Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
K64 Pins Spreadsheet I created this spreadsheet from the data in the user manual. Exported here as Microsoft Excel but I encourage folks to use the link below to Google Docs. Useful when documenting how pins will be used. Highlight the intended alternate function of a pin. Use commenting to resolve issues when collaborating with others. Add notes to better describe how a pin is used for a particular application. K64 Pins Template - Google Sheets I created this spreadsheet from the data in the user manual. Exported here as Microsoft Excel but I encourage folks to use the link below to Google Docs. Useful when documenting how pins will be used. Highlight the intended alternate function of a pin. Use commenting to resolve issues when collaborating with others. Add notes to better describe how a pin is used for a particular application. K64 Pins Template - Google Sheets Re: K64 Pins Spreadsheet Excellent - thanks I'll adapt it for the k26 Re: K64 Pins Spreadsheet Thanks Laurent. I do this kind of thing for every project. Maybe I'll start a business Re: K64 Pins Spreadsheet Thanks a lot Kenny ! Freescale should give you a medal for that... This document is really useful (and should be part of some tool provided with the K64 documents). Laurent.
View full article
OPENM4.rar 底层驱动源码,mdk5.0打开。 另有移植好了的ucGUI的源码。 底层驱动源码,mdk5.0打开。 另有移植好了的ucGUI的源码。
View full article
Interfacing PN7150 or PN7120 to Kinetis Freedom Boards with KSDK v1.3 Hello NFC community:   NXP released the new PN7150 NFC Controller chip with enhanced power output, and there is also the new Arduino compatible demokit OM5578/PN7150ARD. See more information in the next pages:   PN7150: High performance full NFC Forum-compliant controlle|NXP OM5578/PN7150ARD: Demoboards for PN7150|NXP   There is also a new PN7120 SBC kit for arduino:   http://cache.nxp.com/documents/user_manual/UM11008.pdf http://cache.nxp.com/documents/user_manual/UM11008.pdf   Due to the Arduino interface pinout, these kits can also be used with Kinetis Freedom Boards. The target of this document is to create projects to use the NFC Controller lîbrary with the PN7120 or PN7150 together with a Kinetis host. Also you will find example projects created for the FRDM-K64F and FRDM-KL43Z.     Requirements:   - Kinetis Software Development Kit v1.3. -> Software Development Kit for Kinetis MCUs|NXP - KDS v3.x with KSDK v1.3 Eclipse Update Installed -> Kinetis Design Studio Integrated Development Enviro|NXP - Kinetis SDK project generator. Available from the "Downloads" tab of KSDK webpage -> Software Development Kit for Kinetis MCUs|NXP     CREATING NEW PROJECT   NOTE: In this step-by-step procedure the FRDM-K64F is used as reference. You can follow the guide according to your own Freedom board.   1) Open the KSDK project generator. 2) Enter the KSDK v1.3 installation path, give a name to the project, select your Freedom board and click on "Advanced":     3) In the advanced settings window enable the checkboxes for:   - Include BSP files - Generate standalone project - Kinetis Design Studio toolchain - Board (confirm that your board is shown in the drop-down menu)   NOTE: The path for the newly created project is set by default inside of the KSDK v1.3 installation. For a standalone project you can change the location, just remember such path to import the project to KDS workspace in a later step.   Leave the rest of configurations as default (New project, Platform library, no RTOS) and finally click on "Advanced Generate!".     4) From Kinetis Design Studio go to File -> Import.     5) Go to General -> Existing Projects into workspace and click "Next".     6) In "select root directory" browse to the location of the platform lib for the created project. By default this path would be:   C:\nxp\KSDK_1.3.0\examples\frdmk64f\user_apps\ \lib\ksdk_platform_lib\kds\   : The name given initially to the project. : The corresponding device number (K64F12 in this case).   Make sure that the project check box is enabled and click on "Finish".     7) Select the KSDK platform library project and click on the "Hammer icon" to build it.     😎 Repeat steps 4 through 6, but this time browse to the location of the application project. In this example the path is:   C:\nxp\KSDK_1.3.0\examples\frdmk64f\user_apps\< project_name >\kds     INTEGRATING NFC CONTROLLER LIBRARY   The next steps describe how to integrate the NFC NCI library to your newly created project.   - The Arduino Interface Boards use the next pinout for communication between the OM5578/PN7150 or OM5577/PN7120 kits with the Freedom or Arduino boards:     As shown in the picture, the pinouts are similar except for the 5V connection. This leverages the enhanced output power feature of the PN7150 NFC Controller.   - We need to check the corresponding pins that will be used from the Freedom board. In this case, the connections to the FRDM-K64F board would be as next:   IMPORTANT: The pinout shown below corresponds to Rev E3 schematics of FRDM-K64F. For Rev D1 the pin used for IRQ (header location J2[2]) must be PTA0 instead of PTC12.     1) Open the file gpio_pins.c and add 2 pin configurations: 1 input pin called NFCCirqPin and 1 output pin called NFCCvenPin.   gpio_input_pin_user_config_t NFCCirqPin = {   .pinName = kGpioNFCCirq,   .config.isPullEnable = false,   .config.pullSelect = kPortPullUp,   .config.isPassiveFilterEnabled = false,   .config.interrupt = kPortIntDisabled, }; gpio_output_pin_user_config_t NFCCvenPin = {   .pinName = kGpioNFCCven,   .config.outputLogic = 1,   .config.slewRate = kPortSlowSlewRate,   .config.driveStrength = kPortLowDriveStrength, };   2) In the file gpio_pins.h add 2 extra elements to the gpio enumeration. Also add extern declarations for the 2 pins defined in the previous step.   NOTE: For FRDM-K64F the pins are PTC12 and PTC3. Select corresponding pins for your Freedom board.   extern gpio_input_pin_user_config_t NFCCirqPin; extern gpio_output_pin_user_config_t NFCCvenPin; /*! @brief Pin names */ enum _gpio_pins_pinNames {   kGpioSW2  = GPIO_MAKE_PIN(GPIOC_IDX, 6U),   kGpioSW3  = GPIO_MAKE_PIN(GPIOA_IDX, 4U),   kGpioSdhc0Cd  = GPIO_MAKE_PIN(GPIOE_IDX, 6U),   kGpioLED1     = GPIO_MAKE_PIN(GPIOE_IDX, 26U),   kGpioLED2     = GPIO_MAKE_PIN(GPIOB_IDX, 22U),   kGpioLED3     = GPIO_MAKE_PIN(GPIOB_IDX, 21U),   kGpioNFCCirq  = GPIO_MAKE_PIN(GPIOC_IDX,  12), /* GPIO for NFCC IRQ pin */   kGpioNFCCven  = GPIO_MAKE_PIN(GPIOC_IDX,  3),  /* GPIO for NFCC VEN pin */ }   3) In the file pin_mux.c define a function to configure the MUX setting of the required GPIO and I2C pins to interface with the NFC Controller.   void configure_nfcc_pins(void) {   /** I2C_SDA **/   PORT_HAL_SetMuxMode(PORTE,25u,kPortMuxAlt5);   PORT_HAL_SetOpenDrainCmd(PORTE,25u,true);   /** I2C_SCL **/   PORT_HAL_SetMuxMode(PORTE,24u,kPortMuxAlt5);   PORT_HAL_SetOpenDrainCmd(PORTE,24u,true);   /* NFCC IRQ */   PORT_HAL_SetMuxMode(PORTC,12u,kPortMuxAsGpio);   /* NFCC VEN */   PORT_HAL_SetMuxMode(PORTC,3u,kPortMuxAsGpio); }   NOTES: - Check the corresponding pins on your Freedom board. FRDM-K64F uses PTC12/PTC3 as GPIOs while PTE24/PTE25 are configured as I2C pins. For I2C pins also check the MUX number in the device's Reference Manual (e.g. PTE24/PTE25 in K64F have the I2C function in ALT5). - This function needs to be called from your project to configure the required pins. e.g. from hardware_init(). - Some Freedom boards share the I2C pins of the Arduino compatible header with an on-board I2C device (e.g. accelerometer), with SDA/SCL pull-up resistors populated already. If this is not the case for your board, make sure to place external pull-ups to  MCU VDD or enable the internal pull-ups as temporary workaround.   4) Add the prototype of the function to the header file pin_mux.h.   /* ** =================================================== **     Method :  configure_nfcc_pins */ /*! **     @brief **         Set mux configuration for I2C and GPIO pins **         to interface with the NFC Controller. */ /* ==================================================*/ void configure_nfcc_pins(void);   5) Copy the folders NfcLibrary and TML to the project folder. The file fsl_i2c_irq.c is also required. In this case the file is found in the next path:   C:\nxp\KSDK_1.3.0\examples\frdmk64f\user_apps\ \platform\drivers\src\i2c   NOTE: If the project was not created in standalone mode, just search the fsl_i2c_irq.c file from your KSDK installation.       6) Add the NfcLibrary and TML folders with all its subfolders and files to the project's tree, so the lilbrary is part of the build. Also add the file fsl_i2c_irq.c to the project. In KDS you can drag and drop folders and files to the project explorer view.       7) Add the compiler include paths for the inc folders.     😎 From the KDS preprocessor settings add or remove the next conditional compilation macros according to your functional requirements:   CARDEMU_SUPPORT: The NFC Controler host (MCU) can emulate a contactless card which can be accessed by an external Reader/Writer. P2P_SUPPORT: The host MCU can establish a 2-way communication accesing to or sending data to an external Reader/Writer. RW_SUPPORT: With this mode the host can access a remote contactless tag/card via the NFC Controller. NCI-DEBUG: If defined, all information transferred between the host MCU and the NFC Controller Interface (commands, responses, notifications, data) is echoed to console for debug purposes.     9) The file tml.h includes the macro NFCC_I2C_INSTANCE which defines the I2C module to use. For FRDM-K64F the module is I2C0. Set this macro according to your Freedom board.   /* NFC Controller I2C interface configuration */ #define NFCC_I2C_INSTANCE  0   At this point the project is ready to use the NFC Controller library and interface the Kinetis Freedom board with PN7120 or PN7150 NFC Controllers.     DEMO PROJECTS   At the end of this document you will find 2 example project packages for the FRDM-K64F and FRDM-KL43Z. Both of the projects can be used with either the OM5578/PN7150 or OM5577/PN7120 kits using the Arduino interface boards.   Each ZIP package includes 2 projects (example application and KSDK library). Unzip the package and import the projects from the resulting location.   Do not select "Copy projects into workspace" in KDS. If you do so the build will fail due to the linked source files not copied over.   The projects must be built in the next order:   1- Platform library project (FRDM-xxx_NFCNCI_Example\lib\ksdk_platform_lib\kds\ ) 2- Demo project (FRDM-xxx_NFCNCI_Example\kds)   The OpenSDA virtual COM port is used to send data to a terminal at 115200 baud. Below an explanation on how to test the different project example features.   RW mode:   - Placing a tag with a single text, URI or vCard NDEF record next to the NFC reader antenna. Examples:         P2P mode:   - Bring an android phone with NFC enabled close to the NFC controller antenna and use the "beaming" feature. In the case below the NXP home page is "beamed" from the adroid phone's explorer. After this, the NFC enabled phone will receive the "Test" NDEF record.                     CARD EMULATION mode     For this mode it is required to remove the P2P_SUPPORT macro and rebuild/reprogram the project.   - Bringing an android phone set to read a NFC tag close to the NFC controller board. The NFC enabled phone will detecta T4T tag type with the "Test" NDEF record.     I hope you can find this document useful. Any questions or doubts please let me know in the comments.   Jorge Gonzalez NXP Technical Support NFC Controller Solutions Re: Interfacing PN7150 or PN7120 to Kinetis Freedom Boards with KSDK v1.3 Hi Jorge, I ported the PN7150 to KW36, the CARDEMU works fine, but the p2p mode is not ok. The log is "WRONG DISCOVERY", I debugged it, found that the RfInterface.Interface = INTF_FRAME, I used the Huawei and Samsung phones. But  if I test with two PN7150, it is good. I'm new to NFC, could you tell me why.
View full article
在Android Auto P9.0.0_GA2.1.0 BSP上添加新的共享内存区域 [中文翻译版] 见附件   原文链接: Add a new shared memory region on Android Auto P9.0.0_GA2.1.0 BSP  i.MX 8 Family | i.MX 8QuadMax (8QM) | 8QuadPlus i.MX 8M | i.MX 8M Mini | i.MX 8M Nano
View full article
[FINISHED] Usage of GUI library LVGL in Zephyr OS ecosystem Results: link  Assignment MicroPython is lightweight implementation of Python 3 with subset of standard library, which is designed to run on micro-controllers. Familiarize with system, compare with other embedded scripting solutions such as eLUA (speed, code size, ease of use).  Port current implementation of MicroPython to NXP processor and use it  in the example application.  Provide source code back to community.   Language CZ/SK/EN   Leaders @petr Lukas   Contact University team NXP Semiconductors CZ  Apply by email  Finished
View full article
3D 打印机耗材挤出机和回收机中的 Kinetis V <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 打印机挤出机和回收机使用受益于扭矩控制的电机,可以通过使用 Kinetis V、BLDC 电机和飞思卡尔电机控制算法来获得。 RepRap 3D 打印机灯丝的塑料废料挤出机。图片:RepRapWiki 更多详情请参阅此链接: 3D 打印再生塑料如何推动可持续发展并提高社会意识 - TechRepublic 耐用、闪亮、崭新的塑料——正是它支撑着大多数3D打印机的运转。随着3D打印技术日益普及,我们开始在各行各业扩大项目规模,全球对3D打印的需求将大幅增长。如果行业的目标是让大多数家庭和企业都拥有3D打印机,同时制造中心持续运行着许多其他3D打印机,那么我们自然会在这个基础上再增加更多塑料——美国人每年扔掉的塑料总量高达3360万吨,其中只有6.5%能够被回收利用。据估计, 全球海洋中漂浮着 1亿吨塑料 。每一块塑料都需要500到1000年才能分解。
View full article
MONITOR FOR BIOLOGIC TELEMETRY CONTROLLED BY AN ANDROID APP VIA BLUETOOTH COMUNICATION Hypoxemia is a common clinical condition associated to several diseases that affect the respiratory system, including not only the lungs diseases, but also cardiac, neurological, neuromuscular and chest wall diseases. Its occurrence bring serious risks being essential its detection for appropriate treatment, and even to prevent the death of the patient. Hypoxemia is defined as the low saturation of oxygen carried by the blood. The most efficient way to determine the oxygen saturation is the gasometry, an invasive method (through the collection of blood) which is able to determine the gases present in the blood as well as its relative amount, as well as other data related to the blood. The Oximetry is a less effective method, but not least important, because of its practicality for not being an invasive method. Depending on the quality of the equipment, it can ensure very small variations with respect to the gasometry. In some cases, the constant monitoring of oxygen saturation is required. The portable oximeters are useful in such cases due to their ease of use. For monitoring oxygen saturation in the blood and also the heart rate, the machine suitable for this purpose is the Pulse Oximeter. Such equipment can be easily purchased at a low cost, but requires an assisted operation for each measurement, by the user or another person. This project proposed the development of a device capable of measuring blood oxygen saturation and heart rate. The data collected will be transmitted to a Smartphone, featuring an Android Application that displays the received data to the user and sends an automatic message to a health care center with the user's location in case of emergency. The project will also have sensors (accelerometers) to detect when the user has lost concience and fallen to the ground. This device will help to people with a history of health problems such as hypertension, hypoxia, risk of heart attack, among other diseases, giving them more autonomy, since in case of any health problems, somebody will be informed. The mobile monitoring of vital signals will detect when these signals vary significantly out of a safe range, and upon such occurrance a message is sent to pre-registered telephone numbers informing the user's location, and that he needs help help. The device will monitor the blood oxygen level and heart rate by measuring the change in the transparency of the blood through the presence of oxygen saturated hemoglobin is made. The measurement is taken by the emission of light at two wavelengths (red and infrared), where a sensor detects the intensity of light that is absorbed by hemoglobin, which depends on the degree of oxygen saturation. From the comparison between the received signals for each wavelength, it is possible to determine the degree of oxygen saturation in the blood. The meter is controlled by a microcontroller to be selected for this project. There will be a Bluetooth module connected to the microcontroller in order to establish the communication between the device and a paired Smartphone. An Android App will be developed to control the communicatin, display the user information sent by the device as well as send automatic voice messages to pre-registered telephones. The App will also reproduce additional messages played through the headphones to help the user in using the devices features, and also in case of emergency.
View full article
Camera Zoom Motor driven by the MC34933EP - Low Voltage H=Bridge Motor Driver Take a look at this demo using FRDM-KL25Z board with KIT34933EPEVBE evaluation board integrated with a LabView graphical user interface to show how NXP's low-voltage H-bridge motor driver (MC34933EP) is driving the zoom motor within a digital camera.     Features Fully integrated driver Small package for portable applications Built-In 2-Channel H-Bridge Driver H-Bridge Operation Voltage 2.0V~7.0V Output Current 1.0A @TA=25°C Low Total RDS(ON) 0.8Ω (Typ), 1.0Ω (Max) @ TA=25 °C Dual Channel Parallel Driver, RDS(ON) 0.4Ω (Typ). Max DC Current 1.4A PWM Control Input Frequency up to 200 kHz Built-In Shoot-Through Current Prevention Circuit Built-In Charge Pump Circuit (External Cap type) VCC Low Voltage Detection for logic power supply voltage Thermal Detection for H-Bridge driver This product is included in NXP’s Product Longevity Program, with assured supply for a minimum of 10 years after launch Featured NXP Products Product Link Freedom Development Platform for Kinetis® KL14, KL15, KL24, KL25 MCUs FRDM-KL25Z|Freedom Development Platform|Kinetis® MCU | NXP  Freedom Expansion Board - MC34933, Dual H-Bridge, Stepper Motor Driver, 2.0-7.0V, 1.4A Freedom Expansion Board - MC34933, Dual H-Bridge, Stepper Motor Driver, 2.0-7.0V, 1.4A | NXP  Industrial
View full article
PT200x_Training_Microcode_Diagnostics File attached is a deep training on all PT200x family, showing how to program those devices using microcode. Microcode examples related to this training are avialable on nxp.com on PT2001 or PT2000 pages. This training is mainly valid for PT2001 but can also be applied to PT2000 and MC33816 File attached is a deep training on all PT200x family, showing how to program those devices using microcode. Microcode examples related to this training are avialable on nxp.com on PT2001 or PT2000 pages. This training is mainly valid for PT2001 but can also be applied to PT2000 and MC33816 Solenoid Controller
View full article
Steven Dean - Health / Wellness From the Sensor to the Cloud Presented at Sensors Expo, 25 June 2014 Presented at Sensors Expo, 25 June 2014
View full article
USB CDC 虚拟通信示例 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 附件文档展示了如何获取 MQX4.1 虚拟 Com 端口示例。该文档位于以下路径: C:\Freescale\Freescale_MQX_4_1\usb\device\examples\cdc\virtual_com 此致, 卡洛斯
View full article
USB CDC バーチャル コムの例 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 添付のドキュメントでは、MQX4.1 Virtual Com Port Exampleの入手方法が示されています。このドキュメントは、次のパスにあります。 C:\Freescale\Freescale_MQX_4_1\usb\device\examples\cdc\virtual_com よろしくお願いします。 カルロス
View full article
迈向2025年:转变智能零售的解决方案 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 智能零售基于这样的理念:技术解决方案将传统的实体店转变为交互式销售点,包括物流以及增加客户互动。加入此会议,了解 RFID-NFC 在更智能的产品、更智能的物流中的应用,以及它实现无人商店等新零售概念的能力。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 智能零售基于这样的理念:技术解决方案将传统的实体店转变为交互式销售点,包括物流以及增加客户互动。加入此会议,了解 RFID-NFC 在更智能的产品、更智能的物流中的应用,以及它实现无人商店等新零售概念的能力。 NFC | 控制器和读取器 IC
View full article
FRDM-K64 ADC basic example using mbed Here you will find both the code and project files for the ADC project. This project configures the ADC to perform single conversions, by default this is performed using a 16 bit configuration. The code uses ADC0, channel 12, once the conversion is finished it is displayed at the serial terminal. Code: #include "mbed.h" AnalogIn AnIn(A0); DigitalOut led(LED1); Serial pc(USBTX,USBRX); float x; int main() {     pc.printf(" ADC demo code\r\n");     while (1)     {     x=AnIn.read();     pc.printf("ADC0_Ch12=(%d)\r\n", x);     wait(.2);     } } Freedom Development Platform Kinetis K Series MCUs
View full article
The Road to 2025: Solutions to Transform Smart Retail Smart Retail is based on the idea that technological solutions convert a conventional physical store into an interactive point of sale, including logistics as much as increased customer interaction. Join this session to learn about the use of RFID-NFC for smarter products, smarter logistics and it's ability to enable new retail concepts such as unmanned stores.   Smart Retail is based on the idea that technological solutions convert a conventional physical store into an interactive point of sale, including logistics as much as increased customer interaction. Join this session to learn about the use of RFID-NFC for smarter products, smarter logistics and it's ability to enable new retail concepts such as unmanned stores.   NFC | Controller & Reader ICs
View full article
産業用およびネットワーキングアプリケーション向けのLayerscapeマイクロプロセッサポートフォリオ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> エッジコンピューティングアプリケーションについて学習し、ゲートウェイとセキュリティを「管理」するための技術的な課題、クラウドサービスのコンテキストでEdgeScaleフレームワークを含むLayerscapeマイクロプロセッサソリューションを示します。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> エッジコンピューティングアプリケーションについて学習し、ゲートウェイとセキュリティを「管理」するための技術的な課題、クラウドサービスのコンテキストでEdgeScaleフレームワークを含むLayerscapeマイクロプロセッサソリューションを示します。 Layerscape処理プラットフォーム
View full article
Meet the i.MX 8M Nano Webinar 05Dec2019.pdf In case you missed our recent webinar, you can check out the slides and comment below with any questions. In case you missed our recent webinar, you can check out the slides and comment below with any questions. i.MX 8M | i.MX 8M Mini | i.MX 8M Nano
View full article
使用恩智浦BLE协议栈创建自定义的Profile-服务器端(Server) [中文翻译版] 见附件   原文链接: https://community.nxp.com/docs/DOC-332703 BLE Software
View full article
RD68HC908LHID: LIN-bus HID Lamp Leveling Stepper Motor Control for NXP 908E625 Overview Features Block Diagram Board Design Resources Overview This NXP® reference design describes a High Intensity Discharge (HID) lamp leveling system with a LIN-bus interface. Stepper motor controller operating as a LIN-bus slave (LIN Stepper Controller). All functionality is provided by a general purpose LIN-bus IC MM908E625 and LIN Stepper software (HC08 software). The LIN Master consists of a master control board, based on an MC9S12DP256 CPU, and a personal computer with a graphical user interface (GUI), running in a master software environment. The LIN-bus Stepper Controller can be used for any kind of stepper motor control using the LIN-bus serial communication protocol. Features LIN bus Interface rev 1.2 Bus speed 19.2 kbps Slave IC without external crystal or resonator Slave node clock synchronization ±15% Each LIN slave controls one bi-phase bipolar stepper motor Motor phase current limitation up to 700 mA Supply voltage 12 V d.c. Stepper motor control with stepping acceleration and deceleration ramp Stepping frequency up to 2,500 Hz Slave parameter configuration via LIN-bus Slave LIN signal reconfiguration via LIN-bus Code written in C-language Block Diagram Board Design Resources Legacy Designs
View full article
High-Voltage 3-Phase Motor Control Description Block Diagram Products Related Documentation Tools Training Related Demos from Communities Description 3-phase high voltage motor control can drive today demanding BLDC, PMSM, and ACIM motor control designs with optimized MCU performance. The Kinetis V MCUs range from 75MHz to 240MHz to give product flexibility and to maximize reuse. Additionally, NXP provides a Kinetis motor software suite to reduce the motor control learning curve and accelerate time to market.   Block Diagram Products Category Name 1: MCU Product URL 1 Arm® Cortex®-M0+|Kinetis® KV1x Motor Control MCUs | NXP  Product Description 1 The Kinetis® KV1x MCU delivers a 27% increase in performance in math-intensive applications versus comparable MCUs, allowing it to target BLDC as well as more computationally demanding PMSM motors. Category Name 2: AC/DC Product URL 1 TEA175x | NXP  Product Description 1 The high level of integration of the TEA175x allows the design of a cost-effective power supply with a very low number of external components. The special built-in green functions provide high efficiency at all power levels. Category Name 3: Temperature Sensor Product URL 1 LM75B: Digital Temperature Sensor | NXP  Product Description 1 The I²C-bus LM75B contains a number of data to store the device settings, it features an 11-bit ADC that offers a temperature resolution of 0.125 °C with a programmable temperature threshold. Related Documentation Document URL Title https://www.nxp.com/docs/en/application-note/AN10441.pdf Level shifting techniques in I2C-bus design https://www.nxp.com/docs/en/application-note/AN10580.pdf GreenChip TEA1761 synchronous rectification and feedback controller https://www.nxp.com/docs/en/application-note/AN11013.pdf DCM Flyback SMPS controller https://www.nxp.com/docs/en/application-note/AN4986.pdf Automated PMSM Parameter Identification https://www.nxp.com/docs/en/application-note/AN4912.pdf Tuning 3-Phase PMSM Sensorless control application using MCAT Tool https://www.nxp.com/docs/en/application-note/AN4862.pdf Three-phase BLDC sensorless control using the MKV10x https://www.nxp.com/docs/en/application-note/AN4870.pdf Tuning 3-Phase BLDC motor sensorless control using MKV10 https://www.nxp.com/docs/en/application-note/AN4560.pdf PWM synchronization using Kinetis Flextimers https://www.nxp.com/docs/en/application-note/AN4410.pdf FlexTimer and ADC synchronization for Field-Oriented-Control Tools Training URL https://store.nxp.com/webapp/ecommerce.add_item.framework?PART_NUMBER=TWR-MC-LV3PH&QUANTITY=1&ITEM_TYPE=TOOL_HW  Training   Training URL NXP Complete Motor Control Solutions  -…  Related Demos from Communities Related Demos URL Kinetis KV1x MCU with Tower System TWR-KV10Z32 Demo  Kinetis V Series ATV Enabled by Kinetis V & Motor Control Toolbox  Block Diagrams Industrial
View full article