lpc4370 LPCXPRESSO编程

时间:2015-12-07 16:22:38

标签: arm lpc

我对Arduino和Msp430(使用嵌入式C)有一些编程知识。但是,当谈到LPC4370时,我无法理解从哪里开始学习。我需要对上述芯片进行编程,但我没有找到任何解释可用于编程LPC4370的各种功能的材料。 LPCopen有很多代码,但我可以找到使用的各种函数的实用程序。如果有人可以提示从哪里开始,那将非常有帮助。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我没有使用LPC 4370,但我有使用lpc2148的经验。

我建议你做的事情很少:

  1. here

  2. 下载LPCEXPRESSO IDE
  3. here

  4. 下载LPCXPRESSO IDE GUIDE
  5. 了解如何创建项目。如何加载到硬件中。

  6. 然后学习从FreeRTOS

  7. 等rtos创建简单任务

    阅读this ST手册了解各种RTOS功能

    以下是创建简单任务的示例程序。您可以参考,同样地,您可以阅读以下练习并继续。

    /*
        FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.
    
        This file is part of the FreeRTOS distribution.
    
        FreeRTOS is free software; you can redistribute it and/or modify it under
        the terms of the GNU General Public License (version 2) as published by the
        Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
        ***NOTE*** The exception to the GPL is included to allow you to distribute
        a combined work that includes FreeRTOS without being obliged to provide the
        source code for proprietary components outside of the FreeRTOS kernel.
        FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
        ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
        FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
        more details. You should have received a copy of the GNU General Public
        License and the FreeRTOS license exception along with FreeRTOS; if not it
        can be viewed here: http://www.freertos.org/a00114.html and also obtained
        by writing to Richard Barry, contact details for whom are available on the
        FreeRTOS WEB site.
    
        1 tab == 4 spaces!
    
        http://www.FreeRTOS.org - Documentation, latest information, license and
        contact details.
    
        http://www.SafeRTOS.com - A version that is certified for use in safety
        critical systems.
    
        http://www.OpenRTOS.com - Commercial support, development, porting,
        licensing and training services.
    */
    
    
    
    
    #include "FreeRTOS.h"
    
    #include "task.h"
    
    
    /* Demo includes. */
    #include "basic_io.h"
    
    /* Used as a loop counter to create a very crude delay. */
    #define mainDELAY_LOOP_COUNT        ( 0xfffff )
    
    /* The task functions. */
    void vTask1( void *pvParameters );
    void vTask2( void *pvParameters );
    
    int main( void )
    {
        /* Init the semi-hosting. */
    
        printf( "\n" );
        /* Create one of the two tasks. */
        xTaskCreate(    vTask1,     /* Pointer to the function that implements the task. */
                        "Task 1",   /* Text name for the task.  This is to facilitate debugging only. */
                        240,        /* Stack depth in words. */
                        NULL,       /* We are not using the task parameter. */
                        1,          /* This task will run at priority 1. */
                        NULL );     /* We are not using the task handle. */
    
        /* Create the other task in exactly the same way. */
        xTaskCreate( vTask2, "Task 2", 240, NULL, 1, NULL );
    
        /* Start the scheduler so our tasks start executing. */
        //
    
        vTaskStartScheduler();
    
    
    
    
        for( ;; );
        return 0;
    }
    /*-----------------------------------------------------------*/
    
    void vTask1( void *pvParameters )
    {
    const char *pcTaskName = "Task 1 is running\n";
    volatile unsigned long ul;
    
        /* As per most tasks, this task is implemented in an infinite loop. */
        for( ;; )
        {
            /* Print out the name of this task. */
    
            vPrintString( pcTaskName );
    
    
            /* Delay for a period. */
            for( ul = 0; ul < mainDELAY_LOOP_COUNT; ul++ )
            {
                /* This loop is just a very crude delay implementation.  There is
                nothing to do in here.  Later exercises will replace this crude
                loop with a proper delay/sleep function. */
            }
        }
    
        //??????delete your task
    }
    
    void vTask2( void *pvParameters )
    {
    const char *pcTaskName = "Task 2 is running\n";
    volatile unsigned long ul;
    
        /* As per most tasks, this task is implemented in an infinite loop. */
        for( ;; )
        {
            /* Print out the name of this task. */
            vPrintString( pcTaskName );
    
            /* Delay for a period. */
            for( ul = 0; ul < mainDELAY_LOOP_COUNT; ul++ )
            {
                /* This loop is just a very crude delay implementation.  There is
                nothing to do in here.  Later exercises will replace this crude
                loop with a proper delay/sleep function. */
            }
        }
    }
    /*-----------------------------------------------------------*/
    void vApplicationMallocFailedHook( void )
    {
        /* This function will only be called if an API call to create a task, queue
        or semaphore fails because there is too little heap RAM remaining. */
        for( ;; );
    }
    /*-----------------------------------------------------------*/
    
    
    void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )
    {
        /* This function will only be called if a task overflows its stack.  Note
        that stack overflow checking does slow down the context switch
        implementation. */
        for( ;; );
    }
    /*-----------------------------------------------------------*/
    
    
    void vApplicationIdleHook( void )
    {
        /* This example does not use the idle hook to perform any processing. */
    }
    /*-----------------------------------------------------------*/
    
    
    void vApplicationTickHook( void )
    {
        /* This example does not use the tick hook to perform any processing. */
    }
    

    你可以练习什么类型的例子?它可以找到here