huangzhiluo

    1. Analog Circuit Design.pdf 290/52833 模拟电子 2011-03-25
      谢谢分享
    2. LM3S菜鸟成长日记-SD卡-文件写/读 237/59568 微控制器 MCU 2011-03-24
      谢谢,期待
    3. LM3S菜鸟成长日记-SD卡-文件写/读 237/59568 微控制器 MCU 2011-03-24
      谢谢楼主!!!
    4. 基于RVMDK(KEIL)开发平台的帮助中文文档 18/11248 微控制器 MCU 2011-03-23
      楼主热心人啊
    5. 1.5v干电池升压到3v boost DC-DC电路 17/16070 模拟电子 2011-03-23
      开始时Q7、Q6都导通,一段时间后电感右侧积累一定能量造成C7右左有电势,Q7关闭造成Q6关闭,我想问一下是什么使得Q7关闭的,期待楼主的解答啊,我想不通:Sweat:
    6. 看看,期待
    7. 制作LED日光灯电源全过程 646/94839 LED专区 2011-03-19
      有原理图不
    8. keil和StellarisWare的inc库 2/4854 微控制器 MCU 2011-03-18
      我不是要让程序检查没错,而是想知道为什么一般都是引用StellarisWare里面的库的,这次怎么引用keil里面的库,这两个库里面.h文件一般相似但很多不一样的,我没有在路径里面设置keil文件夹的啊,怎么会引用,郁闷中,各位大侠帮帮忙啊
    9. :funk:
    10. SysCtlDelay()函数解析 24/17710 微控制器 MCU 2011-02-22
      最后延迟用6m和8m的晶振延迟都除以3000吗?谢谢啦,8m的不是除以4000?本人菜鸟
    11. LM3S JTAG被锁解决 20/16550 微控制器 MCU 2011-02-21
      感谢楼主,吓坏偶啦
    12. 分享珍藏的LWIP资料,3个中文PDF 270/56340 微控制器 MCU 2011-02-14
      楼主太给力了哈,谢谢
    13. uart相关 10/3054 微控制器 MCU 2011-01-28
      嘿嘿
    14. uart相关 10/3054 微控制器 MCU 2011-01-27
      囧囧
    15. uart相关 10/3054 微控制器 MCU 2011-01-27
      希望各位高手帮忙啊
    16. uart相关 10/3054 微控制器 MCU 2011-01-27
      感谢楼上几位热心,多谢啦
    17. uart相关 10/3054 微控制器 MCU 2011-01-27
      #include "inc/hw_ints.h" #include "inc/hw_memmap.h" #include "inc/hw_types.h" #include "driverlib/debug.h" #include "driverlib/gpio.h" #include "driverlib/interrupt.h" #include "driverlib/sysctl.h" #include "driverlib/uart.h" #include "drivers/rit128x96x4.h" #include "inc/lm3s6965.h" //***************************************************************************** // //! \addtogroup example_list //! UART (uart_echo) //! //! This example application utilizes the UART to echo text.  The first UART //! (connected to the FTDI virtual serial port on the evaluation board) will be //! configured in 115,200 baud, 8-n-1 mode.  All characters received on the //! UART are transmitted back to the UART. // //***************************************************************************** //***************************************************************************** // // The error routine that is called if the driver library encounters an error. // //***************************************************************************** #ifdef DEBUG void __error__(char *pcFilename, unsigned long ulLine) { } #endif //***************************************************************************** // // The UART interrupt handler. // //***************************************************************************** void UARTIntHandler(void) {     unsigned long ulStatus; GPIO_PORTF_DATA_R &= ~(0x01);     //     // Get the interrrupt status.     //     ulStatus = UARTIntStatus(UART0_BASE, true);     //     // Clear the asserted interrupts.     //     UARTIntClear(UART0_BASE, ulStatus);     //     // Loop while there are characters in the receive FIFO.     //     while(UARTCharsAvail(UART0_BASE))     {         //         // Read the next character from the UART and write it back to the UART.         //         UARTCharPutNonBlocking(UART0_BASE, UARTCharGetNonBlocking(UART0_BASE));     } } //***************************************************************************** // // Send a string to the UART. // //***************************************************************************** void UARTSend(const unsigned char *pucBuffer, unsigned long ulCount) {     //     // Loop while there are more characters to send.     //     while(ulCount--)     {         //         // Write the next character to the UART.         //         UARTCharPutNonBlocking(UART0_BASE, *pucBuffer++);     } } //***************************************************************************** // // This example demonstrates how to send a string of data to the UART. // //***************************************************************************** int main(void) {     //     // Set the clocking to run directly from the crystal.     //     SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN |                    SYSCTL_XTAL_8MHZ);     //     // Initialize the OLED display and write status.     //     RIT128x96x4Init(1000000);     RIT128x96x4StringDraw("UART Echo",            36,  0, 15);     RIT128x96x4StringDraw("Port:   Uart 0",       12, 16, 15);     RIT128x96x4StringDraw("Baud:   115,200 bps",  12, 24, 15);     RIT128x96x4StringDraw("Data:   8 Bit",        12, 32, 15);     RIT128x96x4StringDraw("Parity: None",         12, 40, 15);     RIT128x96x4StringDraw("Stop:   1 Bit",        12, 48, 15);     //     // Enable the peripherals used by this example.     //     SysCtlPeripheralEnable(SYSCTL_PERIPH_UART0);     SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);         SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF);         // Enable the GPIO pin for the LED (PF0).  Set the direction as output, and     // enable the GPIO pin for digital function.     //     GPIO_PORTF_DIR_R = 0x01;     GPIO_PORTF_DEN_R = 0x01;         // Turn on the LED.         //         GPIO_PORTF_DATA_R |= 0x01;     //     // Enable processor interrupts.     //     IntMasterEnable();     //     // Set GPIO A0 and A1 as UART pins.     //     GPIOPinTypeUART(GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1);     //     // Configure the UART for 115,200, 8-N-1 operation.     //     UARTConfigSetExpClk(UART0_BASE, SysCtlClockGet(), 115200,                         (UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE |                          UART_CONFIG_PAR_NONE));     //     // Enable the UART interrupt.     //     IntEnable(INT_UART0);     UARTIntEnable(UART0_BASE, UART_INT_RX | UART_INT_RT);     //     // Prompt for text to be entered.     //     UARTSend((unsigned char *)"Enter text: ", 12);     //     // Loop forever echoing data through the UART.     //     while(1)     {     } } 其实也没什么更改,就是加了灯,我把这个代码复制更改到keil打开ti提供的就行,自己新建文件夹加入inc等,出现了这些状况,是不是keil配置有问题还是没有生成某些文件啊

最近访客

< 1/1 >

统计信息

已有119人来访过

  • 芯积分:--
  • 好友:--
  • 主题:2
  • 回复:17

留言

你需要登录后才可以留言 登录 | 注册


现在还没有留言