Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
APF-IND-T1090 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将针对中国市场介绍MAPS开发套件。了解如何使用它并运行一些示例。 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 本次会议将针对中国市场介绍MAPS开发套件。了解如何使用它并运行一些示例。
View full article
Next Generation IEEE® 802.11ac WLAN System Design with QorIQ T102x and LS10xx Processors New high-performance WLAN access point, router and gateway solutions addressing the latest IEEE® 801.11ac MU-MIMO features, including a preview of Inteop 2015 demo and add-on service support (AIS based metrics). Presented by Jim Bridgwater Presented at DwF Silicon Valley - March 26, 2015 Session ID: AMF-SNT-T1049 New high-performance WLAN access point, router and gateway solutions addressing the latest IEEE® 801.11ac MU-MIMO features, including a preview of Inteop 2015 demo and add-on service support (AIS based metrics). Presented by Jim Bridgwater Presented at DwF Silicon Valley - March 26, 2015 Session ID: AMF-SNT-T1049 Layerscape Processing Platforms Power Architecture® Processors
View full article
The Freescale Cup Qualification Event at the Hochschule in Munich Video on YouTube done by the University of Applied Sciences of Munich about the Freescale Cup event held on March 18th Freescale Cup 2014 an der Hochschule München - YouTube Freescale Cup Content
View full article
フリースケール・カップEMEAファイナリストを見る <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 11カ国から集まった21の大学から25の学生チームが、4月29日から30日にかけてフリースケール・カップEMEAチャレンジに集まります。 イベント情報は https://www.facebook.com/events/1425416907713292/ でチェックしてください フリースケール・カップの内容
View full article
About Gigabit Ethernet performance gap between Android&Linux     Gigabit Ethernet should be one of most beautiful features in our imx6 platform which will bring more colorful dreams to many customers. But recently,many people responsed that there were great performance gaps between using Android and Linux. Now let me give an exploration here.     Same hardware, same kernel, different performance,why?     In linux, its data throughput can reach 400Mbps.In JB, it can only get to 200Mbps.     From the below info, we can see it should be related with frames dropping.      root@android:/ # busybox ifconfig eth0      eth0      Link encap:Ethernet  HWaddr 00:04:9F:02:6C:E1                inet addr:192.168.0.100  Bcast:192.168.0.255  Mask:255.255.255.0                inet6 addr: fe80::204:9fff:fe02:6ce1/64 Scope:Link                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1                RX packets:7382672 errors:71828 dropped:789 overruns:71828 frame:71828                TX packets:4147006 errors:0 dropped:0 overruns:0 carrier:0                collisions:0 txqueuelen:1000                RX bytes:2568845018 (2.3 GiB)  TX bytes:284789020 (271.5 MiB)      In TCP stack, there are three buffers involved in iperf test case:tcp_mem; tcp_rmem; tcp_wmem.      All of them are described by three variables which will influence a lot for iperf test result.      In linux,I got a snapshot for them:      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_mem      18240      24320     36480      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_rmem      4096       87380     778240      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_wmem      4096       16384     778240      In Android,I also got them to compare to:      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_mem      9285      12380     18570      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_rmem      4096       87380     396160      root@sabresd_6dq:/# cat /proc/sys/net/ipv4/tcp_wmem      4096       16384     396160      The tcp_mem varibles define how the TCP stack should behave in kernel memory management.The first value tells the kernel the low threshold. The second value tells the kernel at which point to start pressuing memory usage down. The third one tells the kernel how many memory pages it may use maximally. If it is reached,TCP streams and packets start geting dropped until to a safe level.      In tcp_rmem, the first value defines the minimum receive buffer for each TCP connection and this buffer is always allocated to a TCP socket.The second one defines the default receive buffer size. The third one specifies the maximum receive buffer that can be allocated for a TCP socket.      In tcp_wmem, three varibles also be given to describle the TCP send buffer for each TCP socket.      We can check how these values come from in kernel code.There is an algorithm in kernel_imx/net/ipv4/sysctl_net_ipv4.c +450.     limit = nr_free_buffer_pages() / 8;     limit = max(limit, 128UL);     sysctl_tcp_mem[0] = limit / 4 * 3;     sysctl_tcp_mem[1] = limit;     sysctl_tcp_mem[2] = sysctl_tcp_mem[0] * 2;     /* Set per-socket limits to no more than 1/128 the pressure threshold */     limit = ((unsigned long)sysctl_tcp_mem[1]) << (PAGE_SHIFT - 7);     max_wshare = min(4UL*1024*1024, limit);     max_rshare = min(6UL*1024*1024, limit);     sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;     sysctl_tcp_wmem[1] = 16*1024;     sysctl_tcp_wmem[2] = max(64*1024, max_wshare);     sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;     sysctl_tcp_rmem[1] = 87380;     sysctl_tcp_rmem[2] = max(87380, max_rshare);      From the above algorithm, we can see tcp_mem,tcp_wmem[2],tcp_rmem[2] all related with nr_free_buffer_pages() which stands for amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL.      So here, we can find the root cause of performance gap between Android and Linux. There is big gaps in free RAM while running different OS. In fact, in android, Google has introduced one mechanism to tune these values through propertity. Now we are using default AOSP's values, you can refer to them in device/fsl/imx6/etc/init.rc.For wifi and Ethernet, they are both using net.tcp.buffersize.wifi. # Define TCP buffer sizes for various networks #   ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,     setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208     setprop net.tcp.buffersize.wifi    524288,1048576,2097152,262144,524288,1048576     setprop net.tcp.buffersize.lte     524288,1048576,2097152,262144,524288,1048576     setprop net.tcp.buffersize.umts    4094,87380,110208,4096,16384,110208     setprop net.tcp.buffersize.hspa    4094,87380,262144,4096,16384,262144     setprop net.tcp.buffersize.hsupa   4094,87380,262144,4096,16384,262144     setprop net.tcp.buffersize.hsdpa   4094,87380,262144,4096,16384,262144     setprop net.tcp.buffersize.hspap   4094,87380,1220608,4096,16384,1220608     setprop net.tcp.buffersize.edge    4093,26280,35040,4096,16384,35040     setprop net.tcp.buffersize.gprs    4092,8760,11680,4096,8760,11680     setprop net.tcp.buffersize.evdo    4094,87380,262144,4096,16384,262144 I tried to change the above values but unfortunately got no obvious improvement.Hi,why???? so another topic,how tcp_mem and tcp_rmem cowork in kernel? In android, we only have way to tuning tcp_rmem or tcp_wmem settings but not tc_mem. Take "iperf -c" for example, tcp_rmem will be filled up according to the frequency of Gigabit ethernet clock. And then it will be repacked acoording to the size of tcp_mem.If tcp_mem is smaller, more times will be triggered and if it has exceeds the max value dropping frames will be triggered. Then retransport will be launched in TCP. At last, performance will downgrade. It is just like go surfing using Gigabit but with a rubbish notebook. You still can't enjoy good performance of Gigabit ethernet. Why kernel calculate tcp_mem like this in ipv4? Maybe they consider the balance between single high-bandwidth and multiple connections. You can imagine if we change the tcp_mem to use a solid big value, it may cause the board deny connections because of a lack of memory allocation in tcp init. Here I will give out several method to improve our android ethernet performance. Enlarge your memory size in board design phase.      I have double checked it by testing in our SabreAuto board whose memory is 2G whose download speed can reach to 270 Mbps about 50Mbps over Sabresd. Try to use older version android, if you can use ICS, you can abandon JB4.3. Compared with newer android version, old version will take less memory and there will leave more free memory to use. Using ICS, we can reach 380 Mbps downloading while in JB4.3, it can only get to 210 Mbps. If you are using sabresd's Gigabit ethernet for a very important case, you can balance it if you can throw other memory eaters like GPU. I have checked it if we disable GPU, the performance can reached to 340 Mbps in JB4.3 with about 50% improvement. Change tcp_mem algorithm to enlarge its max value threshold. Like you can change  "sysctl_tcp_mem[2] = sysctl_tcp_mem[0] * 2" to "sysctl_tcp_mem[2] = sysctl_tcp_mem[0] * 3" above. You can see there won't be framedropping any more. Or you can also refer to How To: Network / TCP / UDP Tuning to hard code it. But like its author said in it, it is not recommended for those support multiple users or multiple connections. for it maybe cause the board to deny connections because of a lack of memory allocation. Tune tcp_rmem and tcp_wmem through the following patches in android. you will get bidirectional 320Mbps. But if you use ifconfig tool to set static ip you will not get these parameters set. For AOSP's framework only support DHCP now. For this case, you can manually echo these parameters in console before doing test.                Gerrit Code Review                Gerrit Code Review Change kernel's scheduler policy config.      Disable CONFIG_FAIR_GROUP_SCHED and only enable CONFIG_RT_GROUP_SCHED will contribute some enhancement.      With the above changes, I have tested on Sabresd RevC1 using android4.3GA, the bidirection speed can both reach 390~400Mbps. Re: About Gigabit Ethernet performance gap between Android&Linux I would like to point customers to this thread as well so that they can share their results. Best regards, -Mahesh Re: About Gigabit Ethernet performance gap between Android&Linux Hi Jianzheng, Can you please leave this document in this review area (not your private space) until the review process has completed?  When the document is in your own space, and viewing has not been restricted, then everyone in the community can see the document.  We will want to remove all of our review comments from the document before it gets moved to a public community. Thanks, Grant Re: About Gigabit Ethernet performance gap between Android&Linux Can you try to change the tcp_rmem and tcp_wmem size like the patch I give out in this article? Re: About Gigabit Ethernet performance gap between Android&Linux Hi, We are working on i.MX6Q with Android ICS (3.0.35 kernel) and have following doubts. 1) You mentioned,by using Android ICS, you have achieved 380 Mbps downloading (iperf -c from board). I would like to know does it was stable (with small amount of difference)? or does it come like fluctuation (within 200~400Mbps range) during downloading time? 2) If it gives as fluctuation results range from 200~400Mbps, Do you have any idea on how to resolve this instability? Thanks Ajith P V Re: About Gigabit Ethernet performance gap between Android&Linux I suggest what you do is "@mention" your reviewers in a comment to the document (like this one), and ask them to be your designated reviewers and refer them to the main page of this staging area for instructions for reviewers.  Basically, all they have to do is review the doc, provide you some feedback, and then after you make needed changes, they re-review and submit a comment that says "I approve".  Pretty simple.
View full article
i.MX プラットフォーム用のWiFiドライバー <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> embWiSe Technologies(Embedded Wireless Systems Engineeringの頭字語)は、さまざまなWiFiチップセット用の完全な組み込みWiFiドライバーを提供します。embWiSeは、フリースケールの i.MX コミュニティの一員であることを嬉しく思っており、すべての i.MX プラットフォームでWiFiドライバのサポートを提供することに全力で取り組んでいます。embWiSeのWiFiドライバソフトウェアソリューションは、エンジニアリングのリードタイムと市場投入までの時間の問題を軽減し、デバイス設計者のTCOを削減します。 embWiSeは、スマートフォン、フィーチャーフォン、プリンター、DSC、さまざまなアプリケーションや業種のハンドヘルドデバイスなど、世界中のいくつかのモバイル、CE、およびその他の接続デバイスにデザインインを持っています。 具体的には、embWiSeはWinCE6.0でSDIO-WiFi + Bluetoothドライバーを提供します。i.MX51、i.MX53、およびi.MX6プラットフォーム上のWEC7およびWEC2013オペレーティングシステム。WiFiドライバーは、WEC7およびWEC2013のネイティブSDIOスタックおよびセキュリティサプリカントと統合されています。embWiSeは、ネイティブBTスタックと統合されたSDIOおよびUARTインターフェースを介したHCI Bluetoothドライバーも提供します。 さらに、embWiSeは、ThreadX、Nucleus Plus、QNX、uC/OS、uITRONなどの他の組み込みOSプラットフォーム上でSDIO-WiFiドライバーを提供しています。embWiSeは、カスタムハードウェアプラットフォーム上でWiFiドライバーを統合、テスト、検証するための付加価値のあるエンジニアリングサービスも提供しています。 詳細については、 http://www.embwise.com にアクセスするか、 [email protected] に連絡して 詳細を確認してください。
View full article
Q&A: Does current i.MX6 BSP support eMMC 4.5? Q: The i.MX 6Dual/6Quad Applications Processor Reference Manual Rev. D says that i.MX6 supports eMMC 4.5.  But does the current BSP(L3.0.35_12.08.00) support eMMC 4.5?  If not, does Freescale have it in their release plan? A: i.MX 6Dual/6Quad RM and Datasheet declare that the uSDHC module is "fully compliant with the MMC command/response sets and Physical Layer as defined in the Multimedia Card System Specification, v4.2/4.3/4.4/4.41, including high-capacity (> 2 GB) HC MMC cards."  Therefore, if your eMMC4.5 card is backward-compatible with eMMC4.4, you can use it in eMMC4.4 mode to enable eMMC4.4 functionality and performance on the i.MX6 platform. For example, the current i.MX6 Linux BSP (L3.0.35_4.1.0) has added code to interface with an eMMC4.5 card to operate as an eMMC4.4 card. See the following code in drivers/mmc/core/mmc.c:         card->ext_csd.rev = ext_csd[EXT_CSD_REV];         /* workaround: support emmc 4.5 cards to work at emmc 4.4 mode */         if (card->ext_csd.rev > 6) {                 printk(KERN_ERR "%s: unrecognised EXT_CSD revision %d\n",                         mmc_hostname(card->host), card->ext_csd.rev);                 err = -EINVAL;                 goto out;         }
View full article
ビデオ - i.MX53、i.MX51、i.MX27をベースとするiWave組込みソリューション <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> http://www.youtube.com/watch?feature=player_embedded&v=EBocaGGrkqE   投稿者 Charbax on 2011年6月20日 http://iwavesystems.com は、フリースケール・ベースのPCB設計とソフトウェアの最適化を行います。 カテゴリ: サイエンス&テクノロジー ライセンス: 標準 YouTube ライセンス   全般
View full article
ビデオ - 製品demo_i.MX53.mov <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> http://www.youtube.com/watch?feature=player_embedded&v=fQjQPpfExTQ   投稿者 dexterji on 2011年11月1日 i.MX53 の XMBC と DLNA のデモを中国のお客様向けに 1 つ。 カテゴリ: 娯楽 ライセンス: 標準 YouTube ライセンス   全般
View full article
视频 - 产品 demo_i.MX53.mov <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> http://www.youtube.com/watch?feature=player_embedded&v=fQjQPpfExTQ   由dexterji于2011 年 11 月 1 日上传 一个针对中国客户的 i.MX53 上的 XMBC 和 DLNA 演示。 类别: 娱乐 执照: 标准 YouTube 许可   概述
View full article
K20 USB device MSD bootloader 最近搞了一个基于TWR-K20D50M的的USB MSD device bootloader, 可以打开文件夹CW中的K20D5下的.project来查看。 在原始的MSD的基础上移植了FAT过来。 其他IAR和Kinetis的其他chip没有测试,如果需要使用,一个是新增相关头文件,二是在bootloader.h中修改相应的MCU_K20D50M定义下的flash及ram配置 最近搞了一个基于TWR-K20D50M的的USB MSD device bootloader, 可以打开文件夹CW中的K20D5下的.project来查看。 在原始的MSD的基础上移植了FAT过来。 其他IAR和Kinetis的其他chip没有测试,如果需要使用,一个是新增相关头文件,二是在bootloader.h中修改相应的MCU_K20D50M定义下的flash及ram配置 Kinetis K Series MCUs Re: K20 USB device MSD bootloader 但是现在有sdk,如果是全新开发的项目建议从sdk走。 Re: K20 USB device MSD bootloader 可以的,只是主频不一样而已。 Re: K20 USB device MSD bootloader Hi Dawei 請問這個MSD可以使用在MK20DN512xxx10上嗎? 回复:K20 USB 设备 MSD 引导加载程序 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 你好,尤先生。 您是否知道为什么引导加载程序在调试器中工作但在非调试器运行时失败?请检查此线程。https://community.freescale.com/message/365883#365883 回复:K20 USB 设备 MSD 引导加载程序 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 很好,现在我们可以使用您的引导加载程序设计一个 K20 板并下载 FRDM-KL25Z 中使用的 OpenSDA 应用程序。我可以这么说吗? 我还有一份针对 FRDM-KL25Z (IAR) 的 USB MSC 设备引导加载程序修订文档。
View full article
查看 i.MX6 视频输入/输出接口的功率 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 该视频展示了 NovTech 通过实时图像处理实现的 i.MX6 视频输入(CSI 端口)和视频输出(HDMI 端口)。播放 1080p 电影(存储在 SD 卡中)时,i.MX6 的 IPU 单元会获取到达 CSI 输入的实时图像,并使用“绿屏”概念将两个视频流合并为一个。 (在 “我的视频” 中查看)
View full article
Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? Q: How to get the CSI BT656 without HSYNC/VSYNC working. The problem, is that all implemented driver in the BSP are using the external HSYNC/VSYNC synchronization signal. The SW designer is actually struggling to find the right way to generate the end of field active interrupt (end of frame). > mxc_v4l2_still.out I get an: > ERROR: v4l2 capture: mxc_v4l_read timeout counter 0 > > When using mxc_v4l2_capture.out or mxc_v4l2_tvin.out I get an: > ERROR: v4l2 capture: mxc_v4l_dqueue timeout enc_counter 0 > To help him implementing the driver, I need to get some insight on the IPUx_CSIn_CCIR_CODE_1/2/3 as it seems that the bit description 21 to 19 (CSI_STRT_FLD0_ACTV) is not described (same for all the multiple bit field in this register. Maybe it should match the ITU656, but here as well the driver examples does not match the bit description of the ITU standard. So my questions: IS it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? If yes, is it possible to review the IPUx_CSIn_CCIR_CODE_1/2/3 fields and communicate which parameter should be provided here? i.MX6Q A:      For no VSYNC and HSYNC case, in the sensor driver such as "linux-3.0.35\drivers\media\video\mxc\capture\adv7180.c", function ioctl_g_ifparm(), you should set p->u.bt656.bt_sync_correct to 0;      p->u.bt656.bt_sync_correct = 1; // It means external VSYNC and HSYNC will be used for SYNC.      p->u.bt656.bt_sync_correct = 0; // No external VSYNC and HSYNC, embedded EAV and SAV will be used for SYNC.      In iMX6 BSP, the CCIR related code is ready in "linux-3.0.35\drivers\mxc\ipu3\ipu_capture.c", function ipu_csi_init_interface(), no code modification was needed, that code was verified work.      For BT656 mode, your sensor driver such as adv7180, should also report correct parameters in function function ioctl_g_ifparm().      p->u.bt656.clock_curr = 0;  // This will tell linux-3.0.35\drivers\media\video\mxc\capture\mxc_v4l2_capture.c to use "IPU_CSI_CLK_MODE_CCIR656_INTERLACED" in function mxc_v4l2_s_param().      The current iMX6 BSP mxc_v4l2_capture.c driver doesn't support BT656 progressive mode, it only supports BT656 interlace mode. To support BT656 progressive mode, the customer should modify the code in mxc_v4l2_s_param(), let csi_param.clk_mode = IPU_CSI_CLK_MODE_CCIR656_PROGRESSIVE. This is exactly what they are doing, but still it doesn’t work. Actually, they see the code being executed following the right steps in the ipu_csi_init_interface() going through PAL 720x625 configuration. But still, they get the timeout! else if (cfg_param.clk_mode == IPU_CSI_CLK_MODE_CCIR656_INTERLACED) {       if (width == 720 && height == 625) {         /* PAL case */         /*         Field0BlankEnd = 0x6, Field0BlankStart = 0x2,         Field0ActiveEnd = 0x4, Field0ActiveStart = 0           */         ipu_csi_write(ipu, csi, 0x40596, CSI_CCIR_CODE_1);         /*         Field1BlankEnd = 0x7, Field1BlankStart = 0x3,         Field1ActiveEnd = 0x5, Field1ActiveStart = 0x1           */         ipu_csi_write(ipu, csi, 0xD07DF, CSI_CCIR_CODE_2);         ipu_csi_write(ipu, csi, 0xFF0000, CSI_CCIR_CODE_3); So, I believe the parameters are wrong. What could be missing. Can you review the driver? For me it looks like the adv example, except the bt_sync_correct=0, which is what we want. You can suggest the customer to capture the CSI data bus to check if there is correct output from sensor, such as EAV/SAV. For the "timeout" error, it always means there is no correct data on CSI data bus. This document was generated from the following discussion: CSI BT656 Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? Tie DATA_EN permanently to active source. Or, to save pins, just do not configure DATA_EN route outside. Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? If you have further question please go to community and create discussion there. Someone will answer your question. Thanks, Yixing Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? I got it, but it isn't the answer I want. It seems that nobody make imx6q+jb4.3+adv7180 works fine in intervelaved mode. Now I only make it in gated clock, see imx6q android jb4.3_1.0.0-ga adv7180 can't work in bt656 mode Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? That is what in CSI BT656. It has question and answer in Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? The document is only a copy of this topic! Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? Do you see attachment in just below Q&A? Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? where is attached document? Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? Please see attached. Re: Q&A: Is it really possible to implement the BT656 with SAV / EAV and without external HSYNC/VSYNC? Can I access CSI BT656?
View full article
P4080 USB固有のFAQ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4080 の USB インターフェイスを使用しない場合、USBx_VDD_3P3 ピンと USBx_VDD_1P0 ピンを接続しないままにしておくことはできますか?P4040では、接続しないという注意で予約されています。それぞれ3.3Vと1.0Vに接続できますか? USB_VDD_1P0は、1Vまたはプラットフォーム電圧(SOCコアデジタル電源に基づく)に接続する必要があります。USB_VDD_3P3は浮いたままにすることができます。 USBを使用しない場合、USBx_IBIAS_REXTやUSBx_VDD_1P8_DECAPを放置しても安全ですか? USBをまったく使用しない場合は、次のUSB信号をフローティング状態に保ちます:USB1_IBIAS_REXT、USB2_IBIAS_REXT、USB1_VDD_1P8_DECAPおよびUSB2_VDD_1P8_DECAP、USB1_VDD_3P3、USB2_VDD_3P3。 QorIQ P4デバイス
View full article
MY-IMX6Q_CoreBoard I.MX6 CoreBoard Computer On Module • Processor Freescale i.MX 6Quad, 1GHz • RAM 1GB DDR3 SDRAM 64-bit • ROM 4GB NAND Flash    UP to 16GB • ROM 2M SPI Nor Flash • Power supply Single 5V • Size 40mm SO-DIMM • Temp.-Range     0 to + 95C (Consumer)               -20 to + 105C (Extended Consumer)               -40 to +105C (Industrial)               -40 to + 125C (Automotive) Key Features • 10/100Mbps Ethernet • One High Speed USB 2.0 ports • Full HD LCD controller, 24bpp • OpenGL ES 2.0 and OpenVG 1.1        hardware accelerators • Multi-format HD 1080p60 video decoder and 1080p30 encoder hardware engine • Two Camera Interfaces • NEON MPE coprocessor — SIMD Media Processing Architecture — dual, single-precision floating point execute pipeline • Unified 1MB L2 cache • Several interfaces: 5x UART, 2x SDIO, 1x SSI/AC97/I2S, 3x I2C, 2xCSPI • 3.3V I/O • 2x Controller Area Network (FlexCAN) • PCIe 2.0 (1-lane) LVDS Option only: • Dual LVDS display port • SATA OS Support • Linux • Android I.MX6 CoreBoard Computer On Module • Processor Freescale i.MX 6Quad, 1GHz • RAM 1GB DDR3 SDRAM 64-bit • ROM 4GB NAND Flash    UP to 16GB • ROM 2M SPI Nor Flash • Power supply Single 5V • Size 40mm SO-DIMM • Temp.-Range     0 to + 95C (Consumer)               -20 to + 105C (Extended Consumer)               -40 to +105C (Industrial)               -40 to + 125C (Automotive) Key Features • 10/100Mbps Ethernet • One High Speed USB 2.0 ports • Full HD LCD controller, 24bpp • OpenGL ES 2.0 and OpenVG 1.1        hardware accelerators • Multi-format HD 1080p60 video decoder and 1080p30 encoder hardware engine • Two Camera Interfaces • NEON MPE coprocessor — SIMD Media Processing Architecture — dual, single-precision floating point execute pipeline • Unified 1MB L2 cache • Several interfaces: 5x UART, 2x SDIO, 1x SSI/AC97/I2S, 3x I2C, 2xCSPI • 3.3V I/O • 2x Controller Area Network (FlexCAN) • PCIe 2.0 (1-lane) LVDS Option only: • Dual LVDS display port • SATA OS Support • Linux • Android
View full article
enable Bluetooth for Android R13.4.1 Overview As you know, R13.4.1 doesn't support Bluetooth. These attached patches enable Bluetooth for R13.4.1. Before applying the patches for MX6 SabreSD, please rework SabreSD. Refer to How to enable BT on board imx6q_sabresd RevC. Hardware i.MX6Dual/Quad or i.MX6DualLite SabreSD board Software i.MX6DQ/MX6DL Android ICS R13.4 or R13.4.1 Release Re: enable Bluetooth for Android R13.4.1 I need to hard to do  it. if I use BC6888 instead of ar3002, how can I do
View full article
AUT-T4978软件安装及演示应用项目下载 本页支持 NXP 技术日培训课程 AUT-T4978,主题为“实践研讨会:S32K3 中的安全外设驱动程序 - 实现安全的更高水平”。完整的安装先决条件以及所需的 S32DS 演示应用程序项目附在下面。
View full article
FreeMaster_03.07.2013.PEupd <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 更新 PE 的 FreeMASTER 组件 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 更新 PE 的 FreeMASTER 组件
View full article
フリースケール・カップ・サーボ・アッセンブリー <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> サーボホーンの取り付け方法。具体的には、フリースケール・カップ・キットです。[音声なし] (マイビデオで視聴) フリースケール・カップの内容 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 私の理解では、サーボのコースは90度、180度、または360度にすることができます。右回り。0はコーススタートのポイントです。 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> アームを固定する前にサーボを0度にしておくように書かれています。車が直進するには、ニュートラルポジション(90度)であるべきではないでしょうか? Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 音が出ないのは良いことです。メッセージが配信されました。 次に、BWのビデオがあります チャーリー・チャップリンが町にいます。 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 意図的な音はありません。素敵なマイクを買って、もっと静かな場所で録音したい! Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ビデオには音声が付いていますか?何も聞こえないから...。 よろしくお願いいたします。 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> はい、絶対にすべてがそれを制御していることを確認しまで、サーボをステアリングメカニズムに接続しないでください。ソフトウェアにガードバンドを追加して、物理的なメカニズムを損なう可能性のある「オーバーステア」を防ぎます。 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 電源を入れてサーボを「ゼロ」にするプログラムを作成したら、調整する必要があります。 Re: フリースケール・カップ・サーボ・アセンブリ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> おかげで-ホーンを適用する前にサーボ角度をどのように配置して、全可動域を確保しますか?最終組み立ての前に位置をゼロにできるように、最初に電気的に接続する必要があると感じています。
View full article
Processor Expertとは何ですか? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> Processor Expertソフトウェアは、フリースケール製半導体製品のソース・コードを生成するソフトウェア・コンポーネントの作成、設定、最適化、移行、配布を行うための開発システムです。 PExの主な機能は次のとおりです。 すべてのピン、レジスタなどをカプセル化する、サポートされているすべてのシリコンに関する広範で包括的なナレッジベース シリコンリソースの競合は設計時にフラグが立てられ、早期修正が可能 シリコンのドキュメントを読むことなく、ペリフェラルドライバを簡単に作成 RTOSとペリフェラルドライバの容易な統合 生成されたドライバーには、サポートされているプロセッサ間で簡単に移行できるクロスプラットフォーム API があります。 ユーザーは、すべての一般的なタスク(シリアル通信、タイマ、ADC、DAC、デジタルI/Oなど)をカバーする 組み込みコンポーネント と呼ばれる幅広い基本的なビルディングブロックを使用して、アプリケーションまたはライブラリを構築します 。これらのコンポーネントはグラフィカル・ユーザー・インターフェースで構成でき、Processor Expertは、プロセッサとその周辺機器の初期化およびランタイム制御ドライバーのCソースコードを生成します。 Processor Expertは、以下のものでご利用いただけます。 マイクロコントローラ用のCodeWarriorと統合 Microcontroller Driver Suiteと呼ばれるスタンドアロンパッケージとして。KinetisおよびColdFire+マイクロコントローラをサポートしています。コンパイラやリンカは含まれておらず、CodeWarrior 以外の他の IDE で使用できます。 Kinetis Design Stuido (KDS) との統合 詳細については、フリースケールのWebサイト http://www.freescale.com/processorexpert を参照してください。
View full article