This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

UART help(LPC1114)

Is it possible for me to send a C file over a UART connection to an LPC1114 mcu? The C file has configurations for the mcu, if it is possible how can I do so using C# in Visual Studio.

Parents
  • There is a book that I think would be belpfull by YIU called the
    Definitive Guide to the ARM Cortex M0. Even if you do not want to
    buy the book, if you search for the book and find the book home page
    of the publisher you should be able to download the example projects
    for no charge.

    store.elsevier.com/product.jsp

    there are online companion materials that you can download there.

    This book targets LPC1114 Keil board.

    I think the text_io might be instructive to look at.

    Also, I would try just using Tera Term progam to talk with the board instead of
    writing a C program. At least to get the MCU program correct.

    Also, I do not see any example there that uses interrupt for the UART.

    I also like to look at the Measure example for a Cortex M3 at the following
    location:

    C:\Keil_v5\ARM\Examples\Measure

    Although I has a lot of things going on at the same time.

Reply
  • There is a book that I think would be belpfull by YIU called the
    Definitive Guide to the ARM Cortex M0. Even if you do not want to
    buy the book, if you search for the book and find the book home page
    of the publisher you should be able to download the example projects
    for no charge.

    store.elsevier.com/product.jsp

    there are online companion materials that you can download there.

    This book targets LPC1114 Keil board.

    I think the text_io might be instructive to look at.

    Also, I would try just using Tera Term progam to talk with the board instead of
    writing a C program. At least to get the MCU program correct.

    Also, I do not see any example there that uses interrupt for the UART.

    I also like to look at the Measure example for a Cortex M3 at the following
    location:

    C:\Keil_v5\ARM\Examples\Measure

    Although I has a lot of things going on at the same time.

Children