https://www.lpcware.com/content/faq/lpcxpresso/using-lpclink2-as-lpc4370-eval

As well as being a standalone debug probe, the LPC-Link2 can also be used as a simple LPC4370 evaluation board.

The following notes may assist in such usage.

Debug connection

Make sure that you have connected the JTAG/SWD cable from your debug probe to the target LPC-Link2's connector J2 (and not J7!).

Thus if you are using a two LPC-Link2s, one as the debug probe and one as the target - you need to connect J7 on the debug probe to J2 on the target.

Flash Memory

The LPC-Link2 has a 1 MB SPIFI flash (Winbond W25Q80BVSSIG) mounted on it (at address 0x14000000).

You can program this in LPCXpresso using the "LPC18_43_SPIFI_1MB_4KB.cfx" flash driver. Make sure that you have a jumper fitted to JP1 though.

The XML file in the attached LPC4370-Link2-M4only.zip can be used to set up the memory configuration of your project for this memory/flash driver.

Power

If powering the target LPC-Link2 via USB, then we would normally suggest doing this from a powered USB hub that is not connected to your PC.

This will prevent any chance of the target LPC-Link2 being seen by the tools running on the PC as a usable debug probe.

If debugging the target LPC-Link2 using another LPC-Link2, then you can supply power from the debug LPC-Link2

if you fit jumper JP2 (though this is not generally recommended if you have additional hardware attached to the target LPC-Link2).

Simple example application

A simple blinky application for the LPC4370/LPC-Link2 can be found in the attached LPC4370_LPCLink2_LEDblinky.zip.

Download and save the zipfile to your local disk, then use the LPCXpresso "Quickstart Panel -> Import project(s)" option to import it into your workspace.

In order to build this, you will also need to import the CMSIS_LPC43xx_DriverLib library project from the LPCXpresso examples into your workspace.

For details of importing, building and debugging projects - please see the LPCXpresso User Guide, provided within the product itself.

The LPC-Link2 is also a supported target board for our LPCOpen software platform. You can download example code from our LPCOpen pages.

For more information...

For more information on debugging and developing LPC43xx applications in LPCXpresso,

please see the FAQ "LPC18 / LPC43 support in LPCXpresso".

For more information on the LPC-Link2, please visit : http://www.lpcware.com/lpclink2

Using an LPC-Link2 as an LPC4370 evaluation board的更多相关文章

  1. LabTool : LPC LINK2, LPC4370 cheap scope: 80Ms/s 12 bit

    80MHz 12 bit ADC processor LPC4370.LPCxpresso do a LPC LINK2 and LABTOOLS open source oscilloscope d ...

  2. LPC LINK2 IO CONNECTOR

  3. 案子前申請 EVB board (Evaluation Board)

    在跑案子前, 需向各 component vendor 申請 EVB board, 其中也包含 mosfet , 以利做實驗, spec 有可能會寫錯 或不清楚, 所以需要使用 EVB board 檢 ...

  4. LPC-LINK 2

    LPC-Link 2 is an extensible, stand-alone debug adapter that can be configured to support various dev ...

  5. LPC1800 and LPC4300 Boot/ISP/CRP

    MCU的启动方式有很多种:UART接口,扩展的静态存储单元(NOR Flash), SPI Flash,quad SPI Flash,高速USB0和USB1.另外可以通过对OTP存储单元的编程. 首先 ...

  6. LPC43xx SGPIO I2C Implementation

    I²C SGPIO Configuration SGPIO is a hardware feature of LPC4300 series. There are 16 SGPIO pins calle ...

  7. cmsis dap interface firmware

    cmsis dap interface firmware The source code of the mbed HDK (tools + libraries) is available in thi ...

  8. Debug BLE application with nRF Sniffer+wireshark

    1. Introduction The nRF Bluetooth® Smart Sniffer is a tool for debugging Bluetooth low energy (BLE) ...

  9. CMSIS-DAP调试器

    http://www.keil.com/support/man/docs/dapdebug/dapdebug_introduction.htm CMSIS-DAP is the interface f ...

随机推荐

  1. 五个案例让你明白GCD死锁(转)

    转自:http://ios.jobbole.com/82622/ 死锁一直都是在使用多线程时,需要注意的一个问题.以前对同步.异步,串行.并行只有一个模糊的概念,想想也是时候整理一下了.再看看之前的博 ...

  2. ocky勒索软件恶意样本分析2

    locky勒索软件恶意样本分析2 阿尔法实验室陈峰峰.胡进 前言 随着安全知识的普及,公民安全意识普遍提高了,恶意代码传播已经不局限于exe程序了,Locky敲诈者病毒就是其中之一,Locky敲诈者使 ...

  3. lucene删除索引——(五)

    增加在入门程序创建索引中,增删改用IndexWriter. 1.获取IndexWriter的代码 // public IndexWriter getIndexWriter() throws Excep ...

  4. umount /mnt/cdrom

    这是因为有程序正在访问这个设备,最简单的办法就是让访问该设备的程序退出以后再umount.可能有时候用户搞不清除究竟是什么程序在访问设备,如果用户不急着umount,则可以用: umount -l / ...

  5. java8新特性详解(转)

    原文链接. 前言: Java 8 已经发布很久了,很多报道表明Java 8 是一次重大的版本升级.在Java Code Geeks上已经有很多介绍Java 8新特性的文章,例如Playing with ...

  6. jdk678910新特性地址

    jdk678910新特性地址 https://blog.csdn.net/f641385712/article/details/81289401 每篇一句:每个人受到的尊重从来都不是应得的,而是赢得的 ...

  7. Java Map 接口

    Map接口中键和值一一映射. 可以通过键来获取值. 给定一个键和一个值,你可以将该值存储在一个Map对象. 之后,你可以通过键来访问对应的值. 当访问的值不存在的时候,方法就会抛出一个NoSuchEl ...

  8. ssh登录,Host key verification failed的几种处理方法

    - 修订历史History:  2011.05.22   初稿 - 系统: Ubuntu 10.04LTS  - 软件: SSH 使用SSH登录某台机器,有时因为server端的一些变动,会出现以下信 ...

  9. Java List 转 String

    JAVA中List转换String,String转换List,Map转换String,String转换Map之间的转换工具类(调优)https://www.cnblogs.com/cn-wxw/p/6 ...

  10. Cap+Exceptionless实现日志消息发布订阅异常情况日志处理及Cap DashBoard授权处理

    Dashboard介绍 capOptions.UseDashboard(dashoptions => { dashoptions.AppPath = "applicationpath& ...