EFM32 ARM+ KEIl program

摘要:
1硬件连接当使用EFM32启动器进行JLINK烧录时,您必须正确连接启动器和主板之间的连接。EFM32USESSWD模式的MCUo可以烧录并调试WD连接,如下图所示

1Hardware connection

When using the EFM32 starter kit to make a JLINK burn, you must connect the connection between the starter kit and the target board correctly. The MCU of EFM32 USES SWD mode to burn and debug, as shown below, the SWD connection circuit of the 20PIN standard JTAG.

Please note that the interface of 20Pin does not supply the power to EFM32 MCU. The target board needs external power supply, and the 1 foot needs to connect the target board's VMCU for the detection and use of the burning recorder.

EFM32 ARM+ KEIl program第1张

All introductory EFM32 suite offers 20 Pin connector, one of the starter kit 20 Pin of the JTAG interface standard and the JTAG two kinds, the connection line of the sequence is different, this need to pay attention to, the following figure.

EFM32 ARM+ KEIl program第2张

 The following routine USES the EFM32ZG starter kit to make the burning device, the EFM32WG starter kit makes the target board, and the connecting circuit is as follows:

EFM32 ARM+ KEIl program第3张

In the EFM32 starter kit for non-jtag interfaces, SWD pins are defined as follows: 1 foot VMCU,2 feet SWIO, 3 feet GND, 4 feet SWCLK, 6 feet SWO, 10 feet RESET

   Note: in the attachment above, SWO is not required to burn and debug the pins, which are mainly used for output such as program counter sampling values and timestamps.

EFM32 ARM+ KEIl program第4张

免责声明:文章转载自《EFM32 ARM+ KEIl program》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Linux系统目录结构TeeChart的安装 delphi7下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

1-stm32工程建立(Kil自带库工程建立)

1-keil自带库工程建立 在建立之前需要安装Keil对应的芯片支持包pack①可以在keil的pack installer上安装②也可以在keil 官网上下载后导入到keil的pack installer里面STM32PACK包下载的地址http://www.keil.com/dd2/pack/ ①首先新建一个文件夹fourrotor(名字随意),然后打...

Keil Debug (printf) Viewer

Debug (printf) Viewer Home » µVision Windows » Debug (printf) Viewer The Debug (printf) Viewer window displays data streams that are transmitted sequentially through the ITM Stimu...

第2章 如何安装KEIL5

本章内容所涉及的软件只供教学使用,不得用于商业用途。个人或公司因商业用途导致的法律责任,后果自负。 2.1  温馨提示 1、安装路径不能带中文,必须是英文路径 2、安装目录不能跟51的KEIL或者KEIL4冲突,三者目录必须分开 3、KEIL5的安装比起KEIL4多了一个步骤,必须添加MCU库,不然没法使用。 4、如果使用的时候出现莫名其妙的错误,先百度查...

keil将程序装入外部FLASH具体解释

在实际项目中,常常出现芯片的内部FLASH空间不够的情况,这就须要将程序分一部分装到外部FLASH中。 为了让大家能少走些弯路,在这里把我在这当中遇到的一些问题和经验教训给大家分享一下。 仅供參考,假设有错误的地方欢迎指正,提前表示感谢! 转载请注明出处:blog.csdn.net/waitig1992 硬件环境介绍 芯片是LPC1788,外部F...

KEIL查看ARM-Cortex M架构soc的内核寄存器之 MSP

   参考下图stm32l475的参考手册: MSP指向地址基地址为0x20000000的内存处。参考STM32L475的memory map可知MSP指向的是SRAM的一块地址。并且由上面的编译信息可知,偏移量是0x480, 正好等于 RW-data + ZI-data 的值。  参考下图的内存模型: 可知MSP指向的是内存中bss段的最上方。 影响...

Keil 二进制数输入宏

源:http://hi.baidu.com/skystalker/item/e7679cd79c6f751220e250c1?qq-pf-to=pcqq.c2c 在C语言中有十进制,十六进制,八进制;没有二进制的定义,在C51中使用十六进制表示有时不太直观,下面介绍几种方法表示二进制[均来自网络] 方法一 #define _BIN(a,b,c,d,e,f,...