2011年6月25日 星期六

LPCXpresso v3.6.3

  • LPCXpresso v3.6.3
    • Added support for LPC11Uxx parts
    • Fixed rare bug that occasionally caused flash programming to fail silently
    • Fixed part numbers for LPC1111/102 and LPCC1111/202 (User Manual was wrong)
    • Fixed missing registers from Sysctrl peripheral
    • New Getting Started Guide

2011年6月24日 星期五

LPC-LINK 怎麼接到你的板子上?

很多人都有疑問,如果今天我使用 LPCXpresso,
開發到自己的產品硬體已經洗板打件後.
再來要使用LPC-LINK 連接到自己的板子上時,該怎麼做?

LPC-LINK

需要折斷 Target board與 LPC-LINK(像是上圖)嗎?

2011年6月3日 星期五

UART Baud Rate and FDR計算 1/2

這問題是在使用 LPC17xx MCB1700 Sample Code Bundle for LPC17xx Peripherals using Keil's MDK-ARM V2.00 (Jan 10, 2011)  Project UART 時遇到的問題.



UARTInit(0, 57600); /* baud rate setting */
UARTInit(1, 57600); /* baud rate setting */




程式中將UART0/1 設定 Baud Rate 57600 (bps) , 8bit , 1 stop bit,no parity , no flow ctrl ,這個範例實驗是接上rs232後,pc端開啟 HT. 或是 pUTTY,在 pUTTY中敲鍵盤按鍵,該按鍵 ACSII 碼會透過 PC RS232 TX 傳送至 LPC17xx UART Rx , 再由 LPC17xx Tx將同樣的字元傳送至PC端,顯示在 putty上.  相同的實驗在,LPCXpresso for LPC1114 code 中也有.


1. baud rate 57600


問題是將 UART 0/1的 Baud Rate改為 115200的時候,顯示就不正常.
而57600的時後就沒問題.

這是怎麼一回事?

Related Posts Plugin for WordPress, Blogger...